/hg/rhino-tests: Two new tests added into CompiledScriptClassTest.

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Mar 10 10:29:04 UTC 2014


changeset 3452613adb44 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=3452613adb44
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Mar 10 11:29:46 2014 +0100

	Two new tests added into CompiledScriptClassTest.


diffstat:

 ChangeLog                                       |   5 +++++
 src/org/RhinoTests/CompiledScriptClassTest.java |  21 +++++++++++++++++++++
 2 files changed, 26 insertions(+), 0 deletions(-)

diffs (50 lines):

diff -r 482d9f98ee40 -r 3452613adb44 ChangeLog
--- a/ChangeLog	Fri Mar 07 13:21:16 2014 +0100
+++ b/ChangeLog	Mon Mar 10 11:29:46 2014 +0100
@@ -1,3 +1,8 @@
+2014-03-10  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/CompiledScriptClassTest.java:
+	Two new tests added into CompiledScriptClassTest.
+
 2014-03-07  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/SimpleBindingsClassTest.java:
diff -r 482d9f98ee40 -r 3452613adb44 src/org/RhinoTests/CompiledScriptClassTest.java
--- a/src/org/RhinoTests/CompiledScriptClassTest.java	Fri Mar 07 13:21:16 2014 +0100
+++ b/src/org/RhinoTests/CompiledScriptClassTest.java	Mon Mar 10 11:29:46 2014 +0100
@@ -1923,6 +1923,14 @@
     }
 
     /**
+     * Test for method javax.script.CompiledScript.getClass().getResourceNegativeTest()
+     */
+    protected void testGetResourceNegativeTest() {
+        Object resource = this.compiledScriptClass.getResource("unknown");
+        assertNull(resource, "getResource() does not return null");
+    }
+
+    /**
      * Test for method javax.script.CompiledScript.getClass().getResourcePositiveTest()
      */
     protected void testGetResourcePositiveTest() {
@@ -1984,6 +1992,19 @@
     }
 
     /**
+     * Test for method javax.script.CompiledScript.getClass().getResourceAsStreamNPETest()
+     */
+    protected void testGetResourceAsStreamNPETest() {
+        try {
+            Object resource = this.compiledScriptClass.getResourceAsStream(null);
+            throw new AssertionError("NullPointerException expected!");
+        }
+        catch (NullPointerException e) {
+            //This is OK OK
+        }
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.CompiledScript
      */
     @SuppressWarnings("cast")


More information about the distro-pkg-dev mailing list