/hg/rhino-tests: Enhancement of the test testGetResourceAsStream...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Jan 27 03:47:44 PST 2014
changeset eb150896a385 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=eb150896a385
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Jan 27 12:52:02 2014 +0100
Enhancement of the test testGetResourceAsStreamNegativeTest.
diffstat:
ChangeLog | 5 +
src/org/RhinoTests/ScriptEngineFactoryClassTest.java | 258 ++++++++++++++++++-
2 files changed, 262 insertions(+), 1 deletions(-)
diffs (294 lines):
diff -r d6b53a234aca -r eb150896a385 ChangeLog
--- a/ChangeLog Fri Jan 24 14:14:19 2014 +0100
+++ b/ChangeLog Mon Jan 27 12:52:02 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-27 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineFactoryClassTest.java:
+ Enhancement of the test testGetResourceAsStreamNegativeTest.
+
2014-01-24 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/SimpleScriptContextClassTest.java:
diff -r d6b53a234aca -r eb150896a385 src/org/RhinoTests/ScriptEngineFactoryClassTest.java
--- a/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Fri Jan 24 14:14:19 2014 +0100
+++ b/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Mon Jan 27 12:52:02 2014 +0100
@@ -1,7 +1,7 @@
/*
Rhino test framework
- Copyright (C) 2011, 2012, 2013 Red Hat
+ Copyright (C) 2011, 2012, 2013, 2014 Red Hat
This file is part of IcedTea.
@@ -1266,6 +1266,54 @@
}
try {
+ this.scriptEngineFactoryClass.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.scriptEngineFactoryClass.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.scriptEngineFactoryClass.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.scriptEngineFactoryClass.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.scriptEngineFactoryClass.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.scriptEngineFactoryClass.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.scriptEngineFactoryClass.asSubclass(java.awt.Color.class);
throw new AssertionError("Class.asSubclass(java.awt.Color.class) does not throw any exception");
}
@@ -1290,6 +1338,214 @@
}
try {
+ this.scriptEngineFactoryClass.asSubclass(java.awt.Label.class);
+ throw new AssertionError("Class.asSubclass(java.awt.Label.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.awt.List.class);
+ throw new AssertionError("Class.asSubclass(java.awt.List.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.awt.Menu.class);
+ throw new AssertionError("Class.asSubclass(java.awt.Menu.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.File.class);
+ throw new AssertionError("Class.asSubclass(java.io.File.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.Reader.class);
+ throw new AssertionError("Class.asSubclass(java.io.Reader.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.Writer.class);
+ throw new AssertionError("Class.asSubclass(java.io.Writer.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.StringReader.class);
+ throw new AssertionError("Class.asSubclass(java.io.StringReader.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.StringWriter.class);
+ throw new AssertionError("Class.asSubclass(java.io.StringWriter.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.InputStream.class);
+ throw new AssertionError("Class.asSubclass(java.io.InputStream.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.OutputStream.class);
+ throw new AssertionError("Class.asSubclass(java.io.OutputStream.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.ObjectInputStream.class);
+ throw new AssertionError("Class.asSubclass(java.io.ObjectInputStream.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.io.ObjectOutputStream.class);
+ throw new AssertionError("Class.asSubclass(java.io.ObjectOutputStream.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.math.BigDecimal.class);
+ throw new AssertionError("Class.asSubclass(java.math.BigDecimal.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.math.BigInteger.class);
+ throw new AssertionError("Class.asSubclass(java.math.BigInteger.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.ArrayList.class);
+ throw new AssertionError("Class.asSubclass(java.util.ArrayList.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.LinkedList.class);
+ throw new AssertionError("Class.asSubclass(java.util.LinkedList.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.HashMap.class);
+ throw new AssertionError("Class.asSubclass(java.util.HashMap.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.TreeMap.class);
+ throw new AssertionError("Class.asSubclass(java.util.TreeMap.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.HashSet.class);
+ throw new AssertionError("Class.asSubclass(java.util.HashSet.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.TreeSet.class);
+ throw new AssertionError("Class.asSubclass(java.util.TreeSet.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.Stack.class);
+ throw new AssertionError("Class.asSubclass(java.util.Stack.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.Vector.class);
+ throw new AssertionError("Class.asSubclass(java.util.Vector.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.Hashtable.class);
+ throw new AssertionError("Class.asSubclass(java.util.Hashtable.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.Calendar.class);
+ throw new AssertionError("Class.asSubclass(java.util.Calendar.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.Arrays.class);
+ throw new AssertionError("Class.asSubclass(java.util.Arrays.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.util.Collections.class);
+ throw new AssertionError("Class.asSubclass(java.util.Collections.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
this.scriptEngineFactoryClass.asSubclass(javax.swing.JPanel.class);
throw new AssertionError("Class.asSubclass(javax.swing.JPanel.class) does not throw any exception");
}
More information about the distro-pkg-dev
mailing list