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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Oct 23 01:57:23 PDT 2013


changeset 142e3c159b8e in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=142e3c159b8e
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Oct 23 11:00:30 2013 +0200

	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 21d27ab5696b -r 142e3c159b8e ChangeLog
--- a/ChangeLog	Tue Oct 22 09:38:37 2013 +0200
+++ b/ChangeLog	Wed Oct 23 11:00:30 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-23  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptContextClassTest.java:
+	Added new testGetResourceNPETest case into
+	ScriptContextClassTest.
+
 2013-10-22  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/BindingsClassTest.java:
diff -r 21d27ab5696b -r 142e3c159b8e src/org/RhinoTests/ScriptContextClassTest.java
--- a/src/org/RhinoTests/ScriptContextClassTest.java	Tue Oct 22 09:38:37 2013 +0200
+++ b/src/org/RhinoTests/ScriptContextClassTest.java	Wed Oct 23 11:00:30 2013 +0200
@@ -1579,6 +1579,19 @@
     }
 
     /**
+     * Test for method javax.script.ScriptContext.getClass().getResourceNPETest()
+     */
+    protected void testGetResourceNPETest() {
+        try {
+            Object resource = this.scriptContextClass.getResource(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