/hg/rhino-tests: Added new test testNewInstance into the test suite
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Oct 10 01:38:32 PDT 2013
changeset ffa80879d9af in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=ffa80879d9af
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Oct 10 10:42:18 2013 +0200
Added new test testNewInstance into the test suite
ScriptExceptionClassTest.
diffstat:
ChangeLog | 6 ++++++
src/org/RhinoTests/ScriptExceptionClassTest.java | 17 +++++++++++++++++
2 files changed, 23 insertions(+), 0 deletions(-)
diffs (40 lines):
diff -r c8b6ebc43fa5 -r ffa80879d9af ChangeLog
--- a/ChangeLog Wed Oct 09 13:44:15 2013 +0200
+++ b/ChangeLog Thu Oct 10 10:42:18 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-10 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptExceptionClassTest.java:
+ Added new test testNewInstance into the test suite
+ ScriptExceptionClassTest.
+
2013-10-09 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptExceptionClassTest.java:
diff -r c8b6ebc43fa5 -r ffa80879d9af src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java Wed Oct 09 13:44:15 2013 +0200
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java Thu Oct 10 10:42:18 2013 +0200
@@ -1646,6 +1646,23 @@
}
/**
+ * Test for method javax.script.ScriptException.getClass().newInstance()
+ */
+ protected void testNewInstance() {
+ try {
+ Object o = this.scriptExceptionClass.newInstance();
+ throw new AssertionError("Class.newInstance() does not throw any exception");
+ }
+ catch (InstantiationException e) {
+ // expected exception
+ }
+ catch (IllegalAccessException e) {
+ // expected exception
+ }
+
+ }
+
+ /**
* Test for instanceof operator applied to a class javax.script.ScriptException
*/
@SuppressWarnings("cast")
More information about the distro-pkg-dev
mailing list