/hg/rhino-tests: Added new testGetResourceNPETest case into Simp...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Dec 12 03:03:00 PST 2013


changeset 5b5d51120f71 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=5b5d51120f71
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Dec 12 12:05:41 2013 +0100

	Added new testGetResourceNPETest case into SimpleScriptContextClassTest.


diffstat:

 ChangeLog                                            |   6 ++++++
 src/org/RhinoTests/SimpleScriptContextClassTest.java |  13 +++++++++++++
 2 files changed, 19 insertions(+), 0 deletions(-)

diffs (36 lines):

diff -r 3acd83bfaf58 -r 5b5d51120f71 ChangeLog
--- a/ChangeLog	Wed Dec 11 10:50:25 2013 +0100
+++ b/ChangeLog	Thu Dec 12 12:05:41 2013 +0100
@@ -1,3 +1,9 @@
+2013-12-12  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/SimpleScriptContextClassTest.java:
+	Added new testGetResourceNPETest case into
+	SimpleScriptContextClassTest.
+
 2013-12-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/CompilableClassTest.java:
diff -r 3acd83bfaf58 -r 5b5d51120f71 src/org/RhinoTests/SimpleScriptContextClassTest.java
--- a/src/org/RhinoTests/SimpleScriptContextClassTest.java	Wed Dec 11 10:50:25 2013 +0100
+++ b/src/org/RhinoTests/SimpleScriptContextClassTest.java	Thu Dec 12 12:05:41 2013 +0100
@@ -1792,6 +1792,19 @@
     }
 
     /**
+     * Test for method javax.script.SimpleScriptContext.getClass().getResourceAsStreamNPETest()
+     */
+    protected void testGetResourceAsStreamNPETest() {
+        try {
+            Object resource = this.simpleScriptContextClass.getResourceAsStream(null);
+            throw new AssertionError("NullPointerException expected!");
+        }
+        catch (NullPointerException e) {
+            //This is OK OK
+        }
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.SimpleScriptContext
      */
     @SuppressWarnings("cast")


More information about the distro-pkg-dev mailing list