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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Aug 2 03:11:12 PDT 2013


changeset ea551c7459e6 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=ea551c7459e6
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Aug 02 12:14:48 2013 +0200

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


diffstat:

 ChangeLog                                       |   7 ++++
 src/org/RhinoTests/CompiledScriptClassTest.java |  38 +++++++++++++++++++++++++
 2 files changed, 45 insertions(+), 0 deletions(-)

diffs (89 lines):

diff -r a73f929dc212 -r ea551c7459e6 ChangeLog
--- a/ChangeLog	Thu Aug 01 10:25:51 2013 +0200
+++ b/ChangeLog	Fri Aug 02 12:14:48 2013 +0200
@@ -1,3 +1,10 @@
+2013-08-02  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/CompiledScriptClassTest.java:
+	Added four new tests testGetEnumConstants(), testGetTypeParameters(),
+	testGetSigners() and testDesiredAssertionStatus()
+	into CompiledScriptClassTest.
+
 2013-08-01  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptEngineClassTest.java:
diff -r a73f929dc212 -r ea551c7459e6 src/org/RhinoTests/CompiledScriptClassTest.java
--- a/src/org/RhinoTests/CompiledScriptClassTest.java	Thu Aug 01 10:25:51 2013 +0200
+++ b/src/org/RhinoTests/CompiledScriptClassTest.java	Fri Aug 02 12:14:48 2013 +0200
@@ -341,6 +341,7 @@
      */
     protected void testGetConstructors() {
         // map of constructors which should exists
+        @SuppressWarnings("unused")
         Map<String, String> testedConstructors = null;
         Map<String, String> testedConstructors_jdk6 = new HashMap<String, String>();
         Map<String, String> testedConstructors_jdk7 = new HashMap<String, String>();
@@ -385,6 +386,7 @@
      */
     protected void testGetDeclaredConstructors() {
         // map of constructors which should exists
+        @SuppressWarnings("unused")
         Map<String, String> testedConstructors = null;
         Map<String, String> testedConstructors_jdk6 = new HashMap<String, String>();
         Map<String, String> testedConstructors_jdk7 = new HashMap<String, String>();
@@ -957,12 +959,15 @@
     protected void testGetAnnotations() {
         // following annotations should be provided
         final String[] annotationsThatShouldExists_jdk6 = {
+            // this should be really empty
         };
 
         final String[] annotationsThatShouldExists_jdk7 = {
+            // this should be really empty
         };
 
         final String[] annotationsThatShouldExists_jdk8 = {
+            // this should be really empty
         };
 
         // get all annotations
@@ -1117,6 +1122,39 @@
     }
 
     /**
+     * Test for method javax.script.CompiledScript.getClass().getEnumConstants()
+     */
+    protected void testGetEnumConstants() {
+        Object[] enumConstants = this.compiledScriptClass.getEnumConstants();
+        assertNull(enumConstants, "getEnumConstants() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.CompiledScript.getClass().getTypeParameters()
+     */
+    protected void testGetTypeParameters() {
+        TypeVariable<?>[] typeParameters = this.compiledScriptClass.getTypeParameters();
+        assertNotNull(typeParameters, "getTypeParameters() return null");
+        assertEquals(0, typeParameters.length, "array of wrong size returned by getTypeParameters() " + typeParameters.length);
+    }
+
+    /**
+     * Test for method javax.script.CompiledScript.getClass().getSigners()
+     */
+    protected void testGetSigners() {
+        Object[] signers = this.compiledScriptClass.getSigners();
+        assertNull(signers, "getSigners() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.CompiledScript.getClass().desiredAssertionStatus()
+     */
+    protected void testDesiredAssertionStatus() {
+        assertFalse(this.compiledScriptClass.desiredAssertionStatus(),
+                "Method CompiledScript.getClass().desiredAssertionStatus() returns wrong value");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.CompiledScript
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list