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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Aug 14 01:47:48 PDT 2013


changeset 3f08a736ce66 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=3f08a736ce66
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Aug 14 10:51:30 2013 +0200

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


diffstat:

 ChangeLog                                 |   7 ++++++
 src/org/RhinoTests/BindingsClassTest.java |  36 +++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+), 0 deletions(-)

diffs (74 lines):

diff -r d525cd24b29c -r 3f08a736ce66 ChangeLog
--- a/ChangeLog	Tue Aug 13 10:25:40 2013 +0200
+++ b/ChangeLog	Wed Aug 14 10:51:30 2013 +0200
@@ -1,3 +1,10 @@
+2013-08-14  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/BindingsClassTest.java:
+	Added four new tests testGetEnumConstants(), testGetTypeParameters(),
+	testGetSigners() and testDesiredAssertionStatus()
+	into BindingsClassTest.
+
 2013-08-13  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptContextClassTest.java:
diff -r d525cd24b29c -r 3f08a736ce66 src/org/RhinoTests/BindingsClassTest.java
--- a/src/org/RhinoTests/BindingsClassTest.java	Tue Aug 13 10:25:40 2013 +0200
+++ b/src/org/RhinoTests/BindingsClassTest.java	Wed Aug 14 10:51:30 2013 +0200
@@ -52,6 +52,8 @@
 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.Bindings;
 import javax.script.SimpleBindings;
@@ -898,6 +900,7 @@
         };
 
         final String[] annotationsThatShouldExists_jdk8 = {
+            // this should be really empty
         };
 
         // get all annotations
@@ -1052,6 +1055,39 @@
     }
 
     /**
+     * Test for method javax.script.Bindings.getClass().getEnumConstants()
+     */
+    protected void testGetEnumConstants() {
+        Object[] enumConstants = this.bindingsClass.getEnumConstants();
+        assertNull(enumConstants, "getEnumConstants() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.Bindings.getClass().getTypeParameters()
+     */
+    protected void testGetTypeParameters() {
+        TypeVariable<?>[] typeParameters = this.bindingsClass.getTypeParameters();
+        assertNotNull(typeParameters, "getTypeParameters() return null");
+        assertEquals(0, typeParameters.length, "array of wrong size returned by getTypeParameters() " + typeParameters.length);
+    }
+
+    /**
+     * Test for method javax.script.Bindings.getClass().getSigners()
+     */
+    protected void testGetSigners() {
+        Object[] signers = this.bindingsClass.getSigners();
+        assertNull(signers, "getSigners() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.Bindings.getClass().desiredAssertionStatus()
+     */
+    protected void testDesiredAssertionStatus() {
+        assertFalse(this.bindingsClass.desiredAssertionStatus(),
+                "Method Bindings.getClass().desiredAssertionStatus() returns wrong value");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.Bindings
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list