/hg/rhino-tests: Added new test testAsSubclass into the test suite
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Oct 4 01:22:53 PDT 2013
changeset 63ab35ca019e in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=63ab35ca019e
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Oct 04 10:26:39 2013 +0200
Added new test testAsSubclass into the test suite
ScriptEngineFactoryClassTest.
diffstat:
ChangeLog | 6 +
src/org/RhinoTests/ScriptEngineFactoryClassTest.java | 158 +++++++++++++++++++
2 files changed, 164 insertions(+), 0 deletions(-)
diffs (181 lines):
diff -r 3c6b83c0c0b6 -r 63ab35ca019e ChangeLog
--- a/ChangeLog Thu Oct 03 10:21:27 2013 +0200
+++ b/ChangeLog Fri Oct 04 10:26:39 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-04 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineFactoryClassTest.java:
+ Added new test testAsSubclass into the test suite
+ ScriptEngineFactoryClassTest.
+
2013-10-03 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/SimpleBindingsClassTest.java:
diff -r 3c6b83c0c0b6 -r 63ab35ca019e src/org/RhinoTests/ScriptEngineFactoryClassTest.java
--- a/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Thu Oct 03 10:21:27 2013 +0200
+++ b/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Fri Oct 04 10:26:39 2013 +0200
@@ -1166,6 +1166,164 @@
}
/**
+ * Test for method javax.script.ScriptEngineFactory.getClass().asSubclass()
+ */
+ protected void testAsSubclass() {
+ try {
+ this.scriptEngineFactoryClass.asSubclass(scriptEngineFactoryClass);
+ }
+ catch (Exception e) {
+ e.printStackTrace();
+ throw new AssertionError(e.getMessage());
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.Void.class);
+ throw new AssertionError("Class.asSubclass(java.lang.Void.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.Number.class);
+ throw new AssertionError("Class.asSubclass(java.lang.Number.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.Byte.class);
+ throw new AssertionError("Class.asSubclass(java.lang.Byte.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.Double.class);
+ throw new AssertionError("Class.asSubclass(java.lang.Double.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.Float.class);
+ throw new AssertionError("Class.asSubclass(java.lang.Float.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.Integer.class);
+ throw new AssertionError("Class.asSubclass(java.lang.Integer.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.Long.class);
+ throw new AssertionError("Class.asSubclass(java.lang.Long.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.Short.class);
+ throw new AssertionError("Class.asSubclass(java.lang.Short.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.String.class);
+ throw new AssertionError("Class.asSubclass(java.lang.String.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.StringBuffer.class);
+ throw new AssertionError("Class.asSubclass(java.lang.StringBuffer.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.lang.StringBuilder.class);
+ throw new AssertionError("Class.asSubclass(java.lang.StringBuilder.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");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.awt.Font.class);
+ throw new AssertionError("Class.asSubclass(java.awt.Font.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(java.awt.Image.class);
+ throw new AssertionError("Class.asSubclass(java.awt.Image.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");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(javax.swing.JColorChooser.class);
+ throw new AssertionError("Class.asSubclass(javax.swing.JColorChooser.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(javax.swing.JScrollBar.class);
+ throw new AssertionError("Class.asSubclass(javax.swing.JScrollBar.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.asSubclass(javax.swing.JSlider.class);
+ throw new AssertionError("Class.asSubclass(javax.swing.JSlider.class) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ }
+
+ /**
* Test for method javax.script.ScriptEngineFactory.getClass().newInstance()
*/
protected void testNewInstance() {
More information about the distro-pkg-dev
mailing list