/hg/rhino-tests: Added new testGetResourceNegativeTest case into
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Nov 8 00:50:38 PST 2013
changeset 084069106e7f in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=084069106e7f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Nov 08 09:54:31 2013 +0100
Added new testGetResourceNegativeTest case into
InvocableClassTest.
diffstat:
ChangeLog | 6 ++++++
src/org/RhinoTests/InvocableClassTest.java | 8 ++++++++
2 files changed, 14 insertions(+), 0 deletions(-)
diffs (31 lines):
diff -r a3744343ed0d -r 084069106e7f ChangeLog
--- a/ChangeLog Thu Nov 07 09:31:31 2013 +0100
+++ b/ChangeLog Fri Nov 08 09:54:31 2013 +0100
@@ -1,3 +1,9 @@
+2013-11-08 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/InvocableClassTest.java:
+ Added new testGetResourceNegativeTest case into
+ InvocableClassTest.
+
2013-11-07 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/SimpleScriptContextClassTest.java:
diff -r a3744343ed0d -r 084069106e7f src/org/RhinoTests/InvocableClassTest.java
--- a/src/org/RhinoTests/InvocableClassTest.java Thu Nov 07 09:31:31 2013 +0100
+++ b/src/org/RhinoTests/InvocableClassTest.java Fri Nov 08 09:54:31 2013 +0100
@@ -1450,6 +1450,14 @@
}
/**
+ * Test for method javax.script.Invocable.getClass().getResourceNegativeTest()
+ */
+ protected void testGetResourceNegativeTest() {
+ Object resource = this.invocableClass.getResource("unknown");
+ assertNull(resource, "getResource() does not return null");
+ }
+
+ /**
* Test for instanceof operator applied to a class javax.script.Invocable
*/
@SuppressWarnings("cast")
More information about the distro-pkg-dev
mailing list