/hg/rhino-tests: Added new testGetResourceNegativeTest into Scri...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Nov 26 01:19:25 PST 2013


changeset 2c30f6a7c285 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=2c30f6a7c285
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Nov 26 10:23:20 2013 +0100

	Added new testGetResourceNegativeTest into ScriptContextClassTest.java.


diffstat:

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

diffs (31 lines):

diff -r 52f3b6653ccd -r 2c30f6a7c285 ChangeLog
--- a/ChangeLog	Mon Nov 25 09:37:50 2013 +0100
+++ b/ChangeLog	Tue Nov 26 10:23:20 2013 +0100
@@ -1,3 +1,9 @@
+2013-11-26  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptContextClassTest.java:
+	Added new testGetResourceNegativeTest into
+	ScriptContextClassTest.java.
+
 2013-11-25  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/SimpleBindingsClassTest.java:
diff -r 52f3b6653ccd -r 2c30f6a7c285 src/org/RhinoTests/ScriptContextClassTest.java
--- a/src/org/RhinoTests/ScriptContextClassTest.java	Mon Nov 25 09:37:50 2013 +0100
+++ b/src/org/RhinoTests/ScriptContextClassTest.java	Tue Nov 26 10:23:20 2013 +0100
@@ -1592,6 +1592,14 @@
     }
 
     /**
+     * Test for method javax.script.ScriptContext.getClass().getResourceNegativeTest()
+     */
+    protected void testGetResourceNegativeTest() {
+        Object resource = this.scriptContextClass.getResource("unknown");
+        assertNull(resource, "getResource() does not return null");
+    }
+
+    /**
      * Test for method javax.script.ScriptContext.getClass().getResourcePositiveTest()
      */
     protected void testGetResourcePositiveTest() {


More information about the distro-pkg-dev mailing list