/hg/rhino-tests: Added new testGetResourceNegativeTest case into
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Oct 21 02:52:57 PDT 2013
changeset 1f31c258deff in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=1f31c258deff
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Oct 21 11:56:47 2013 +0200
Added new testGetResourceNegativeTest case into
SimpleScriptContextClassTest.
diffstat:
ChangeLog | 6 ++++++
src/org/RhinoTests/SimpleScriptContextClassTest.java | 13 +++++++++++++
2 files changed, 19 insertions(+), 0 deletions(-)
diffs (36 lines):
diff -r c476f3ce848f -r 1f31c258deff ChangeLog
--- a/ChangeLog Fri Oct 18 10:32:51 2013 +0200
+++ b/ChangeLog Mon Oct 21 11:56:47 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-21 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/SimpleScriptContextClassTest.java:
+ Added new testGetResourceNegativeTest case into
+ SimpleScriptContextClassTest.
+
2013-10-18 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/AbstractScriptEngineClassTest.java:
diff -r c476f3ce848f -r 1f31c258deff src/org/RhinoTests/SimpleScriptContextClassTest.java
--- a/src/org/RhinoTests/SimpleScriptContextClassTest.java Fri Oct 18 10:32:51 2013 +0200
+++ b/src/org/RhinoTests/SimpleScriptContextClassTest.java Mon Oct 21 11:56:47 2013 +0200
@@ -1710,6 +1710,19 @@
}
/**
+ * Test for method javax.script.SimpleScriptContext.getClass().getResourceNPETest()
+ */
+ protected void testGetResourceNPETest() {
+ try {
+ Object resource = this.simpleScriptContextClass.getResource(null);
+ throw new AssertionError("NullPointerException expected!");
+ }
+ catch (NullPointerException e) {
+ //This is OK OK
+ }
+ }
+
+ /**
* Test for instanceof operator applied to a class javax.script.SimpleScriptContext
*/
@SuppressWarnings("cast")
More information about the distro-pkg-dev
mailing list