/hg/rhino-tests: Added new test testNewInstance into the test suite

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Oct 2 00:42:03 PDT 2013


changeset 9a5179c62ad8 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=9a5179c62ad8
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Oct 02 09:45:49 2013 +0200

	Added new test testNewInstance into the test suite
	ScriptEngineFactoryClassTest.


diffstat:

 ChangeLog                                            |   6 ++++++
 src/org/RhinoTests/ScriptEngineFactoryClassTest.java |  17 +++++++++++++++++
 2 files changed, 23 insertions(+), 0 deletions(-)

diffs (40 lines):

diff -r fbd651803006 -r 9a5179c62ad8 ChangeLog
--- a/ChangeLog	Tue Oct 01 09:24:04 2013 +0200
+++ b/ChangeLog	Wed Oct 02 09:45:49 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-02  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptEngineFactoryClassTest.java:
+	Added new test testNewInstance into the test suite
+	ScriptEngineFactoryClassTest.
+
 2013-10-01  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptEngineClassTest.java:
diff -r fbd651803006 -r 9a5179c62ad8 src/org/RhinoTests/ScriptEngineFactoryClassTest.java
--- a/src/org/RhinoTests/ScriptEngineFactoryClassTest.java	Tue Oct 01 09:24:04 2013 +0200
+++ b/src/org/RhinoTests/ScriptEngineFactoryClassTest.java	Wed Oct 02 09:45:49 2013 +0200
@@ -1166,6 +1166,23 @@
     }
 
     /**
+     * Test for method javax.script.ScriptEngineFactory.getClass().newInstance()
+     */
+    protected void testNewInstance() {
+        try {
+            Object o = this.scriptEngineFactoryClass.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.ScriptEngineFactory
      */
     @SuppressWarnings("cast")


More information about the distro-pkg-dev mailing list