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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Oct 3 01:17:41 PDT 2013


changeset 3c6b83c0c0b6 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=3c6b83c0c0b6
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Oct 03 10:21:27 2013 +0200

	Added new test testNewInstance into the test suite
	SimpleBindingsClassTest.


diffstat:

 ChangeLog                                       |   6 ++++++
 src/org/RhinoTests/SimpleBindingsClassTest.java |  18 ++++++++++++++++++
 2 files changed, 24 insertions(+), 0 deletions(-)

diffs (41 lines):

diff -r 9a5179c62ad8 -r 3c6b83c0c0b6 ChangeLog
--- a/ChangeLog	Wed Oct 02 09:45:49 2013 +0200
+++ b/ChangeLog	Thu Oct 03 10:21:27 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-03  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/SimpleBindingsClassTest.java:
+	Added new test testNewInstance into the test suite
+	SimpleBindingsClassTest.
+
 2013-10-02  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/ScriptEngineFactoryClassTest.java:
diff -r 9a5179c62ad8 -r 3c6b83c0c0b6 src/org/RhinoTests/SimpleBindingsClassTest.java
--- a/src/org/RhinoTests/SimpleBindingsClassTest.java	Wed Oct 02 09:45:49 2013 +0200
+++ b/src/org/RhinoTests/SimpleBindingsClassTest.java	Thu Oct 03 10:21:27 2013 +0200
@@ -1652,6 +1652,24 @@
     }
 
     /**
+     * Test for method javax.script.SimpleBindings.getClass().newInstance()
+     */
+    protected void testNewInstance() {
+        try {
+            Object o = this.simpleBindingsClass.newInstance();
+        }
+        catch (InstantiationException e) {
+            e.printStackTrace();
+            throw new AssertionError(e.getMessage());
+        }
+        catch (IllegalAccessException e) {
+            e.printStackTrace();
+            throw new AssertionError(e.getMessage());
+        }
+
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.SimpleBindings
      */
     @SuppressWarnings("cast")


More information about the distro-pkg-dev mailing list