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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Jul 25 02:44:58 PDT 2013


changeset fcdb4d1cf239 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=fcdb4d1cf239
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Jul 25 11:48:39 2013 +0200

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


diffstat:

 ChangeLog                                            |   7 +++
 src/org/RhinoTests/ScriptEngineManagerClassTest.java |  41 +++++++++++++++++++-
 2 files changed, 47 insertions(+), 1 deletions(-)

diffs (104 lines):

diff -r 205ca386a62e -r fcdb4d1cf239 ChangeLog
--- a/ChangeLog	Wed Jul 24 11:22:02 2013 +0200
+++ b/ChangeLog	Thu Jul 25 11:48:39 2013 +0200
@@ -1,3 +1,10 @@
+2013-07-25  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptEngineManagerClassTest.java:
+	Added four new tests testGetEnumConstants(), testGetTypeParameters(),
+	testGetSigners() and testDesiredAssertionStatus()
+	into ScriptEngineManagerClassTest.
+
 2013-07-24  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptExceptionClassTest.java:
diff -r 205ca386a62e -r fcdb4d1cf239 src/org/RhinoTests/ScriptEngineManagerClassTest.java
--- a/src/org/RhinoTests/ScriptEngineManagerClassTest.java	Wed Jul 24 11:22:02 2013 +0200
+++ b/src/org/RhinoTests/ScriptEngineManagerClassTest.java	Thu Jul 25 11:48:39 2013 +0200
@@ -52,12 +52,13 @@
 import java.lang.reflect.Field;
 import java.lang.reflect.Method;
 import java.lang.reflect.Modifier;
+import java.lang.reflect.Type;
+import java.lang.reflect.TypeVariable;
 
 import javax.script.ScriptEngineManager;
 
 
 
-
 /**
  * Set of tests which check the API of ScriptEngineManager class using
  * Java reflection API.
@@ -285,6 +286,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>();
@@ -332,6 +334,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>();
@@ -1069,12 +1072,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
@@ -1229,6 +1235,39 @@
     }
 
     /**
+     * Test for method javax.script.ScriptEngineManager.getClass().getEnumConstants()
+     */
+    protected void testGetEnumConstants() {
+        Object[] enumConstants = this.scriptEngineManagerClass.getEnumConstants();
+        assertNull(enumConstants, "getEnumConstants() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.ScriptEngineManager.getClass().getTypeParameters()
+     */
+    protected void testGetTypeParameters() {
+        TypeVariable<?>[] typeParameters = this.scriptEngineManagerClass.getTypeParameters();
+        assertNotNull(typeParameters, "getTypeParameters() return null");
+        assertEquals(0, typeParameters.length, "array of wrong size returned by getTypeParameters() " + typeParameters.length);
+    }
+
+    /**
+     * Test for method javax.script.ScriptEngineManager.getClass().getSigners()
+     */
+    protected void testGetSigners() {
+        Object[] signers = this.scriptEngineManagerClass.getSigners();
+        assertNull(signers, "getSigners() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.ScriptEngineManager.getClass().desiredAssertionStatus()
+     */
+    protected void testDesiredAssertionStatus() {
+        assertFalse(this.scriptEngineManagerClass.desiredAssertionStatus(),
+                "Method ScriptEngineManager.getClass().desiredAssertionStatus() returns wrong value");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.ScriptEngineManager
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list