/hg/rhino-tests: Added four new tests testGetEnumConstants(), te...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Jul 24 02:18:21 PDT 2013


changeset 205ca386a62e in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=205ca386a62e
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Jul 24 11:22:02 2013 +0200

	Added four new tests testGetEnumConstants(), testGetTypeParameters(),
	testGetSigners() and testDesiredAssertionStatus()
	into ScriptExceptionClassTest.


diffstat:

 ChangeLog                                        |   7 +++++
 src/org/RhinoTests/ScriptExceptionClassTest.java |  33 ++++++++++++++++++++++++
 2 files changed, 40 insertions(+), 0 deletions(-)

diffs (57 lines):

diff -r 68a78d6a2c57 -r 205ca386a62e ChangeLog
--- a/ChangeLog	Tue Jul 23 11:23:58 2013 +0200
+++ b/ChangeLog	Wed Jul 24 11:22:02 2013 +0200
@@ -1,3 +1,10 @@
+2013-07-24  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptExceptionClassTest.java:
+	Added four new tests testGetEnumConstants(), testGetTypeParameters(),
+	testGetSigners() and testDesiredAssertionStatus()
+	into ScriptExceptionClassTest.
+
 2013-07-23  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/SimpleBindingsClassTest.java:
diff -r 68a78d6a2c57 -r 205ca386a62e src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java	Tue Jul 23 11:23:58 2013 +0200
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java	Wed Jul 24 11:22:02 2013 +0200
@@ -1233,6 +1233,39 @@
     }
 
     /**
+     * Test for method javax.script.ScriptException.getClass().getEnumConstants()
+     */
+    protected void testGetEnumConstants() {
+        Object[] enumConstants = this.scriptExceptionClass.getEnumConstants();
+        assertNull(enumConstants, "getEnumConstants() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getTypeParameters()
+     */
+    protected void testGetTypeParameters() {
+        TypeVariable<?>[] typeParameters = this.scriptExceptionClass.getTypeParameters();
+        assertNotNull(typeParameters, "getTypeParameters() return null");
+        assertEquals(0, typeParameters.length, "array of wrong size returned by getTypeParameters() " + typeParameters.length);
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getSigners()
+     */
+    protected void testGetSigners() {
+        Object[] signers = this.scriptExceptionClass.getSigners();
+        assertNull(signers, "getSigners() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().desiredAssertionStatus()
+     */
+    protected void testDesiredAssertionStatus() {
+        assertFalse(this.scriptExceptionClass.desiredAssertionStatus(),
+                "Method ScriptException.getClass().desiredAssertionStatus() returns wrong value");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.ScriptException
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list