/hg/rhino-tests: Enhancement of the test testAsSubclass.

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Jan 9 03:41:29 PST 2014


changeset f48c989ce6fe in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=f48c989ce6fe
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Jan 09 12:45:38 2014 +0100

	Enhancement of the test testAsSubclass.


diffstat:

 ChangeLog                                        |   5 ++
 src/org/RhinoTests/ScriptExceptionClassTest.java |  48 ++++++++++++++++++++++++
 2 files changed, 53 insertions(+), 0 deletions(-)

diffs (70 lines):

diff -r 276a8320993a -r f48c989ce6fe ChangeLog
--- a/ChangeLog	Wed Jan 08 11:17:38 2014 +0100
+++ b/ChangeLog	Thu Jan 09 12:45:38 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-09  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptExceptionClassTest.java:
+	Enhancement of the test testAsSubclass.
+
 2014-01-08  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/SimpleBindingsClassTest.java:
diff -r 276a8320993a -r f48c989ce6fe src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java	Wed Jan 08 11:17:38 2014 +0100
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java	Thu Jan 09 12:45:38 2014 +0100
@@ -1390,6 +1390,54 @@
         }
 
         try {
+            this.scriptExceptionClass.asSubclass(java.applet.Applet.class);
+            throw new AssertionError("Class.asSubclass(java.applet.Applet.class) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.scriptExceptionClass.asSubclass(java.awt.Button.class);
+            throw new AssertionError("Class.asSubclass(java.awt.Button.class) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.scriptExceptionClass.asSubclass(java.awt.Canvas.class);
+            throw new AssertionError("Class.asSubclass(java.awt.Canvas.class) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.scriptExceptionClass.asSubclass(java.awt.CardLayout.class);
+            throw new AssertionError("Class.asSubclass(java.awt.CardLayout.class) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.scriptExceptionClass.asSubclass(java.awt.Checkbox.class);
+            throw new AssertionError("Class.asSubclass(java.awt.Checkbox.class) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.scriptExceptionClass.asSubclass(java.awt.Choice.class);
+            throw new AssertionError("Class.asSubclass(java.awt.Choice.class) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
             this.scriptExceptionClass.asSubclass(java.awt.Color.class);
             throw new AssertionError("Class.asSubclass(java.awt.Color.class) does not throw any exception");
         }


More information about the distro-pkg-dev mailing list