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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Oct 25 02:01:26 PDT 2013


changeset 1ac6ba772ad8 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=1ac6ba772ad8
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Oct 25 11:05:15 2013 +0200

	Added new testGetResourceNPETest case into InvocableClassTest.


diffstat:

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

diffs (36 lines):

diff -r 13dbbf4ccc49 -r 1ac6ba772ad8 ChangeLog
--- a/ChangeLog	Thu Oct 24 09:20:05 2013 +0200
+++ b/ChangeLog	Fri Oct 25 11:05:15 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-25  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/InvocableClassTest.java:
+	Added new testGetResourceNPETest case into
+	InvocableClassTest.
+
 2013-10-24  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/BindingsClassTest.java:
diff -r 13dbbf4ccc49 -r 1ac6ba772ad8 src/org/RhinoTests/InvocableClassTest.java
--- a/src/org/RhinoTests/InvocableClassTest.java	Thu Oct 24 09:20:05 2013 +0200
+++ b/src/org/RhinoTests/InvocableClassTest.java	Fri Oct 25 11:05:15 2013 +0200
@@ -1437,6 +1437,19 @@
     }
 
     /**
+     * Test for method javax.script.Invocable.getClass().getResourceNPETest()
+     */
+    protected void testGetResourceNPETest() {
+        try {
+            Object resource = this.invocableClass.getResource(null);
+            throw new AssertionError("NullPointerException expected!");
+        }
+        catch (NullPointerException e) {
+            //This is OK OK
+        }
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.Invocable
      */
     @SuppressWarnings("cast")


More information about the distro-pkg-dev mailing list