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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Oct 22 00:34:49 PDT 2013


changeset 21d27ab5696b in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=21d27ab5696b
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Oct 22 09:38:37 2013 +0200

	Added new testGetResourceNegativeTest case into
	BindingsClassTest.


diffstat:

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

diffs (31 lines):

diff -r 1f31c258deff -r 21d27ab5696b ChangeLog
--- a/ChangeLog	Mon Oct 21 11:56:47 2013 +0200
+++ b/ChangeLog	Tue Oct 22 09:38:37 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-22  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/BindingsClassTest.java:
+	Added new testGetResourceNegativeTest case into
+	BindingsClassTest.
+
 2013-10-21  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/SimpleScriptContextClassTest.java:
diff -r 1f31c258deff -r 21d27ab5696b src/org/RhinoTests/BindingsClassTest.java
--- a/src/org/RhinoTests/BindingsClassTest.java	Mon Oct 21 11:56:47 2013 +0200
+++ b/src/org/RhinoTests/BindingsClassTest.java	Tue Oct 22 09:38:37 2013 +0200
@@ -1523,6 +1523,14 @@
     }
 
     /**
+     * Test for method javax.script.Bindings.getClass().getResourceNegativeTest()
+     */
+    protected void testGetResourceNegativeTest() {
+        Object resource = this.bindingsClass.getResource("unknown");
+        assertNull(resource, "getResource() does not return null");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.Bindings
      */
     @SuppressWarnings("cast")


More information about the distro-pkg-dev mailing list