/hg/rhino-tests: Enhancements of various tests in ScriptEngineCl...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Mar 21 10:41:37 UTC 2014
changeset c4c9da65a928 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=c4c9da65a928
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Mar 21 11:42:16 2014 +0100
Enhancements of various tests in ScriptEngineClassTest.
diffstat:
ChangeLog | 5 ++++
src/org/RhinoTests/ScriptEngineClassTest.java | 32 +++++++++++++++++++++++++++
2 files changed, 37 insertions(+), 0 deletions(-)
diffs (61 lines):
diff -r 6c88fa309557 -r c4c9da65a928 ChangeLog
--- a/ChangeLog Thu Mar 20 09:34:13 2014 +0100
+++ b/ChangeLog Fri Mar 21 11:42:16 2014 +0100
@@ -1,3 +1,8 @@
+2014-03-21 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineClassTest.java:
+ Enhancements of various tests in ScriptEngineClassTest.
+
2014-03-20 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptExceptionClassTest.java:
diff -r 6c88fa309557 -r c4c9da65a928 src/org/RhinoTests/ScriptEngineClassTest.java
--- a/src/org/RhinoTests/ScriptEngineClassTest.java Thu Mar 20 09:34:13 2014 +0100
+++ b/src/org/RhinoTests/ScriptEngineClassTest.java Fri Mar 21 11:42:16 2014 +0100
@@ -1891,6 +1891,30 @@
}
try {
+ this.scriptEngineClass.cast(new java.awt.Label());
+ throw new AssertionError("Class.cast(new java.awt.Label()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineClass.cast(new java.awt.Label(new String()));
+ throw new AssertionError("Class.cast(new java.awt.Label(new String())) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineClass.cast(new java.awt.Label("xyzzy"));
+ throw new AssertionError("Class.cast(new java.awt.Label(\"xyzzy\")) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
this.scriptEngineClass.cast(new javax.swing.JLabel());
throw new AssertionError("Class.cast(new javax.swing.JLabel()) does not throw any exception");
}
@@ -1907,6 +1931,14 @@
}
try {
+ this.scriptEngineClass.cast(new javax.swing.JLabel("xyzzy"));
+ throw new AssertionError("Class.cast(new javax.swing.JLabel(\"xyzzy\")) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
this.scriptEngineClass.cast(new javax.swing.JPanel());
throw new AssertionError("Class.cast(new javax.swing.JPanel()) does not throw any exception");
}
More information about the distro-pkg-dev
mailing list