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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Dec 10 03:01:03 PST 2013


changeset 78d18ecc53b9 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=78d18ecc53b9
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Dec 10 12:05:00 2013 +0100

	Added new testGetResourceNPETest case into
	ScriptContextClassTest.


diffstat:

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

diffs (36 lines):

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


More information about the distro-pkg-dev mailing list