/hg/rhino-tests: Enhancement of the test testGetResourceAsStream...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Jan 20 01:20:03 PST 2014
changeset 7bbdd4d1eeee in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=7bbdd4d1eeee
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Jan 20 10:24:21 2014 +0100
Enhancement of the test testGetResourceAsStreamNegativeTest.
diffstat:
ChangeLog | 5 ++++
src/org/RhinoTests/BindingsClassTest.java | 34 ++++++++++++++++++++++++++++++-
2 files changed, 38 insertions(+), 1 deletions(-)
diffs (70 lines):
diff -r 99f05286b20a -r 7bbdd4d1eeee ChangeLog
--- a/ChangeLog Fri Jan 17 13:12:51 2014 +0100
+++ b/ChangeLog Mon Jan 20 10:24:21 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-18 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/BindingsClassTest.java:
+ Enhancement of the test testGetResourceAsStreamNegativeTest.
+
2014-01-17 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/AbstractScriptEngineClassTest.java:
diff -r 99f05286b20a -r 7bbdd4d1eeee src/org/RhinoTests/BindingsClassTest.java
--- a/src/org/RhinoTests/BindingsClassTest.java Fri Jan 17 13:12:51 2014 +0100
+++ b/src/org/RhinoTests/BindingsClassTest.java Mon Jan 20 10:24:21 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.
@@ -1515,6 +1515,30 @@
}
try {
+ this.bindingsClass.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.bindingsClass.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.bindingsClass.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.bindingsClass.cast(new javax.swing.JLabel());
throw new AssertionError("Class.cast(new javax.swing.JLabel()) does not throw any exception");
}
@@ -1531,6 +1555,14 @@
}
try {
+ this.bindingsClass.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.bindingsClass.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