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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Dec 11 01:46:27 PST 2013


changeset 3acd83bfaf58 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=3acd83bfaf58
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Dec 11 10:50:25 2013 +0100

	Added new testGetResourceNPETest case into CompilableClassTest.


diffstat:

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

diffs (36 lines):

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


More information about the distro-pkg-dev mailing list