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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Dec 9 01:36:56 PST 2013


changeset cf37f34b3231 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=cf37f34b3231
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Dec 09 10:40:54 2013 +0100

	Added new testGetResourceNPETest case into
	ScriptExceptionClassTest.


diffstat:

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

diffs (36 lines):

diff -r 1a02ffbe785b -r cf37f34b3231 ChangeLog
--- a/ChangeLog	Fri Dec 06 09:49:13 2013 +0100
+++ b/ChangeLog	Mon Dec 09 10:40:54 2013 +0100
@@ -1,3 +1,9 @@
+2013-12-09  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptExceptionClassTest.java:
+	Added new testGetResourceNPETest case into
+	ScriptExceptionClassTest.
+
 2013-12-06  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/InvocableClassTest.java:
diff -r 1a02ffbe785b -r cf37f34b3231 src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java	Fri Dec 06 09:49:13 2013 +0100
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java	Mon Dec 09 10:40:54 2013 +0100
@@ -1663,6 +1663,19 @@
     }
 
     /**
+     * Test for method javax.script.ScriptException.getClass().getResourceNPETest()
+     */
+    protected void testGetResourceNPETest() {
+        try {
+            Object resource = this.scriptExceptionClass.getResource(null);
+            throw new AssertionError("NullPointerException expected!");
+        }
+        catch (NullPointerException e) {
+            //This is OK OK
+        }
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.ScriptException
      */
     @SuppressWarnings("cast")


More information about the distro-pkg-dev mailing list