/hg/rhino-tests: Added new tests into the SimpleBindingsClassTest:

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Mar 6 01:46:06 PST 2013


changeset 1069faa2ed62 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=1069faa2ed62
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Mar 06 10:49:08 2013 +0100

	Added new tests into the SimpleBindingsClassTest:
	testGetClasses(), testGetDeclaredClasses(), testGetDeclaringClass(),
	testGetEnclosingClass(), testGetEnclosingConstructor() and testGetEnclosingMethod().


diffstat:

 ChangeLog                                       |   7 +++
 src/org/RhinoTests/SimpleBindingsClassTest.java |  50 +++++++++++++++++++++++++
 2 files changed, 57 insertions(+), 0 deletions(-)

diffs (74 lines):

diff -r 793835c40f7d -r 1069faa2ed62 ChangeLog
--- a/ChangeLog	Tue Mar 05 11:43:02 2013 +0100
+++ b/ChangeLog	Wed Mar 06 10:49:08 2013 +0100
@@ -1,3 +1,10 @@
+2013-03-06  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/SimpleBindingsClassTest.java:
+	Added new tests into the SimpleBindingsClassTest:
+	testGetClasses(), testGetDeclaredClasses(), testGetDeclaringClass(),
+	testGetEnclosingClass(), testGetEnclosingConstructor() and testGetEnclosingMethod().
+
 2013-03-05  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptEngineClassTest.java:
diff -r 793835c40f7d -r 1069faa2ed62 src/org/RhinoTests/SimpleBindingsClassTest.java
--- a/src/org/RhinoTests/SimpleBindingsClassTest.java	Tue Mar 05 11:43:02 2013 +0100
+++ b/src/org/RhinoTests/SimpleBindingsClassTest.java	Wed Mar 06 10:49:08 2013 +0100
@@ -706,6 +706,56 @@
     }
 
     /**
+     * Test for method javax.script.SimpleBindings.getClass().getClasses()
+     */
+    protected void testGetClasses() {
+        Class<?>[] cls = this.simpleBindingsClass.getClasses();
+        assertNotNull(cls, "getClasses() returns null");
+        assertEquals(cls.length, 0, "getClasses() returns wrong value!");
+    }
+
+    /**
+     * Test for method javax.script.SimpleBindings.getClass().getDeclaredClasses()
+     */
+    protected void testGetDeclaredClasses() {
+        Class<?>[] cls = this.simpleBindingsClass.getDeclaredClasses();
+        assertNotNull(cls, "getDeclaredClasses() returns null");
+        assertEquals(cls.length, 0, "getDeclaredClasses() returns wrong value!");
+    }
+
+    /**
+     * Test for method javax.script.SimpleBindings.getClass().getDeclaringClass()
+     */
+    protected void testGetDeclaringClass() {
+        Class<?> cls = this.simpleBindingsClass.getDeclaringClass();
+        assertNull(cls, "getDeclaringClass() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.SimpleBindings.getClass().getEnclosingClass()
+     */
+    protected void testGetEnclosingClass() {
+        Class<?> cls = this.simpleBindingsClass.getEnclosingClass();
+        assertNull(cls, "getEnclosingClass() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.SimpleBindings.getClass().getEnclosingConstructor()
+     */
+    protected void testGetEnclosingConstructor() {
+        Constructor<?> cons = this.simpleBindingsClass.getEnclosingConstructor();
+        assertNull(cons, "getEnclosingConstructor() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.SimpleBindings.getClass().getEnclosingMethod()
+     */
+    protected void testGetEnclosingMethod() {
+        Method m = this.simpleBindingsClass.getEnclosingMethod();
+        assertNull(m, "getEnclosingMethod() does not return null");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.SimpleBindings
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list