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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Nov 7 00:27:36 PST 2013


changeset a3744343ed0d in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=a3744343ed0d
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Nov 07 09:31:31 2013 +0100

	Added new testGetResourceNegativeTest case into
	SimpleScriptContextClassTest.


diffstat:

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

diffs (31 lines):

diff -r bf9c54aa5bb9 -r a3744343ed0d ChangeLog
--- a/ChangeLog	Wed Nov 06 10:42:08 2013 +0100
+++ b/ChangeLog	Thu Nov 07 09:31:31 2013 +0100
@@ -1,3 +1,9 @@
+2013-11-07  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/SimpleScriptContextClassTest.java:
+	Added new testGetResourceNegativeTest case into
+	SimpleScriptContextClassTest.
+
 2013-11-06  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/AbstractScriptEngineClassTest.java:
diff -r bf9c54aa5bb9 -r a3744343ed0d src/org/RhinoTests/SimpleScriptContextClassTest.java
--- a/src/org/RhinoTests/SimpleScriptContextClassTest.java	Wed Nov 06 10:42:08 2013 +0100
+++ b/src/org/RhinoTests/SimpleScriptContextClassTest.java	Thu Nov 07 09:31:31 2013 +0100
@@ -1723,6 +1723,14 @@
     }
 
     /**
+     * Test for method javax.script.SimpleScriptContext.getClass().getResourceNegativeTest()
+     */
+    protected void testGetResourceNegativeTest() {
+        Object resource = this.simpleScriptContextClass.getResource("unknown");
+        assertNull(resource, "getResource() does not return null");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.SimpleScriptContext
      */
     @SuppressWarnings("cast")


More information about the distro-pkg-dev mailing list