/hg/rhino-tests: Added additional checks into the test testCase.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Jan 15 04:11:48 PST 2014
changeset 287dddd8c593 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=287dddd8c593
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Jan 15 13:16:03 2014 +0100
Added additional checks into the test testCase.
diffstat:
ChangeLog | 5 +
src/org/RhinoTests/ScriptExceptionClassTest.java | 72 ++++++++++++++++++++++++
2 files changed, 77 insertions(+), 0 deletions(-)
diffs (129 lines):
diff -r 1dc53f4e69f7 -r 287dddd8c593 ChangeLog
--- a/ChangeLog Tue Jan 14 13:25:33 2014 +0100
+++ b/ChangeLog Wed Jan 15 13:16:03 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-15 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptExceptionClassTest.java:
+ Added additional checks into the test testCase.
+
2014-01-14 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptEngineClassTest.java:
diff -r 1dc53f4e69f7 -r 287dddd8c593 src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java Tue Jan 14 13:25:33 2014 +0100
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java Wed Jan 15 13:16:03 2014 +0100
@@ -1548,6 +1548,14 @@
}
try {
+ this.scriptExceptionClass.cast(Character.valueOf('a'));
+ throw new AssertionError("Class.cast(Character.valueOf('a')) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
this.scriptExceptionClass.cast(Byte.valueOf((byte)42));
throw new AssertionError("Class.cast(Byte.valueOf((byte)42)) does not throw any exception");
}
@@ -1604,6 +1612,14 @@
}
try {
+ this.scriptExceptionClass.cast(new Throwable("xyzzy"));
+ throw new AssertionError("Class.cast(new Throwable(\"xyzzy\")) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
this.scriptExceptionClass.cast(new RuntimeException());
throw new AssertionError("Class.cast(new RuntimeException()) does not throw any exception");
}
@@ -1612,6 +1628,14 @@
}
try {
+ this.scriptExceptionClass.cast(new RuntimeException("xyzzy"));
+ throw new AssertionError("Class.cast(new RuntimeException(\"xyzzy\")) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
this.scriptExceptionClass.cast(new Error());
throw new AssertionError("Class.cast(new Error()) does not throw any exception");
}
@@ -1620,6 +1644,22 @@
}
try {
+ this.scriptExceptionClass.cast(new Error("xyzzy"));
+ throw new AssertionError("Class.cast(new Error(\"xyzzy\")) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptExceptionClass.cast(new java.io.File("xyzzy"));
+ throw new AssertionError("Class.cast(new java.io.File(\"xyzzy\")) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
this.scriptExceptionClass.cast(new java.lang.String());
throw new AssertionError("Class.cast(new java.lang.String()) does not throw any exception");
}
@@ -1668,6 +1708,30 @@
}
try {
+ this.scriptExceptionClass.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.scriptExceptionClass.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.scriptExceptionClass.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.scriptExceptionClass.cast(new javax.swing.JLabel());
throw new AssertionError("Class.cast(new javax.swing.JLabel()) does not throw any exception");
}
@@ -1684,6 +1748,14 @@
}
try {
+ this.scriptExceptionClass.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.scriptExceptionClass.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