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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Jul 18 01:45:56 PDT 2013


changeset c79c8334729c in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=c79c8334729c
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Jul 18 10:49:36 2013 +0200

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


diffstat:

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

diffs (87 lines):

diff -r 7447f9e8eb91 -r c79c8334729c ChangeLog
--- a/ChangeLog	Wed Jul 17 10:59:30 2013 +0200
+++ b/ChangeLog	Thu Jul 18 10:49:36 2013 +0200
@@ -1,3 +1,10 @@
+2013-07-18  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/InvocableClassTest.java:
+	Added four new tests testGetEnumConstants(), testGetTypeParameters(),
+	testGetSigners() and testDesiredAssertionStatus()
+	into InvocableClassTest.
+
 2013-07-17  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/CompilableClassTest.java:
diff -r 7447f9e8eb91 -r c79c8334729c src/org/RhinoTests/InvocableClassTest.java
--- a/src/org/RhinoTests/InvocableClassTest.java	Wed Jul 17 10:59:30 2013 +0200
+++ b/src/org/RhinoTests/InvocableClassTest.java	Thu Jul 18 10:49:36 2013 +0200
@@ -52,9 +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.Invocable;
+import javax.script.Invocable;
 import javax.script.ScriptEngineManager;
+import javax.script.ScriptEngine;
 
 
 
@@ -818,12 +822,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
@@ -978,6 +985,39 @@
     }
 
     /**
+     * Test for method javax.script.Invocable.getClass().getEnumConstants()
+     */
+    protected void testGetEnumConstants() {
+        Object[] enumConstants = this.invocableClass.getEnumConstants();
+        assertNull(enumConstants, "getEnumConstants() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.Invocable.getClass().getTypeParameters()
+     */
+    protected void testGetTypeParameters() {
+        TypeVariable<?>[] typeParameters = this.invocableClass.getTypeParameters();
+        assertNotNull(typeParameters, "getTypeParameters() return null");
+        assertEquals(0, typeParameters.length, "array of wrong size returned by getTypeParameters() " + typeParameters.length);
+    }
+
+    /**
+     * Test for method javax.script.Invocable.getClass().getSigners()
+     */
+    protected void testGetSigners() {
+        Object[] signers = this.invocableClass.getSigners();
+        assertNull(signers, "getSigners() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.Invocable.getClass().desiredAssertionStatus()
+     */
+    protected void testDesiredAssertionStatus() {
+        assertFalse(this.invocableClass.desiredAssertionStatus(),
+                "Method Invocable.getClass().desiredAssertionStatus() returns wrong value");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.Invocable
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list