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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Oct 17 04:26:53 PDT 2013


changeset ccd63d49fe53 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=ccd63d49fe53
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Oct 17 13:30:38 2013 +0200

	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 a8242550bb5c -r ccd63d49fe53 ChangeLog
--- a/ChangeLog	Wed Oct 16 09:21:59 2013 +0200
+++ b/ChangeLog	Thu Oct 17 13:30:38 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-17  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/CompilableClassTest.java:
+	Added new testGetResourceNPETest case into
+	CompilableClassTest.
+
 2013-10-16  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/BindingsClassTest.java:
diff -r a8242550bb5c -r ccd63d49fe53 src/org/RhinoTests/CompilableClassTest.java
--- a/src/org/RhinoTests/CompilableClassTest.java	Wed Oct 16 09:21:59 2013 +0200
+++ b/src/org/RhinoTests/CompilableClassTest.java	Thu Oct 17 13:30:38 2013 +0200
@@ -1413,6 +1413,19 @@
     }
 
     /**
+     * Test for method javax.script.Compilable.getClass().getResourceNPETest()
+     */
+    protected void testGetResourceNPETest() {
+        try {
+            Object resource = this.compilableClass.getResource(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