/hg/rhino-tests: Enhancement of the test testAsSubclass.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Jan 14 04:21:22 PST 2014
changeset 1dc53f4e69f7 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=1dc53f4e69f7
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Jan 14 13:25:33 2014 +0100
Enhancement of the test testAsSubclass.
diffstat:
ChangeLog | 5 ++
src/org/RhinoTests/ScriptEngineClassTest.java | 48 +++++++++++++++++++++++++++
2 files changed, 53 insertions(+), 0 deletions(-)
diffs (70 lines):
diff -r 7810608a4b20 -r 1dc53f4e69f7 ChangeLog
--- a/ChangeLog Mon Jan 13 13:03:16 2014 +0100
+++ b/ChangeLog Tue Jan 14 13:25:33 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-14 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineClassTest.java:
+ Enhancement of the test testAsSubclass.
+
2014-01-13 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/SimpleScriptContextClassTest.java:
diff -r 7810608a4b20 -r 1dc53f4e69f7 src/org/RhinoTests/ScriptEngineClassTest.java
--- a/src/org/RhinoTests/ScriptEngineClassTest.java Mon Jan 13 13:03:16 2014 +0100
+++ b/src/org/RhinoTests/ScriptEngineClassTest.java Tue Jan 14 13:25:33 2014 +0100
@@ -1373,6 +1373,54 @@
}
try {
+ this.scriptEngineClass.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.scriptEngineClass.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.scriptEngineClass.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.scriptEngineClass.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.scriptEngineClass.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.scriptEngineClass.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.scriptEngineClass.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