/hg/rhino-tests: Added new test testCast (that checks Class.cast...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Oct 8 01:02:25 PDT 2013
changeset 0a809843f715 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=0a809843f715
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Oct 08 10:06:10 2013 +0200
Added new test testCast (that checks Class.cast() method) into test
test suite ScriptEngineFactoryClassTest.
diffstat:
ChangeLog | 6 +
src/org/RhinoTests/ScriptEngineFactoryClassTest.java | 190 +++++++++++++++++++
2 files changed, 196 insertions(+), 0 deletions(-)
diffs (213 lines):
diff -r 969c6cb3cfb9 -r 0a809843f715 ChangeLog
--- a/ChangeLog Mon Oct 07 11:17:33 2013 +0200
+++ b/ChangeLog Tue Oct 08 10:06:10 2013 +0200
@@ -1,3 +1,9 @@
+2013-10-08 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptEngineFactoryClassTest.java:
+ Added new test testCast (that checks Class.cast() method) into test
+ test suite ScriptEngineFactoryClassTest.
+
2013-10-07 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/ScriptEngineManagerClassTest.java:
diff -r 969c6cb3cfb9 -r 0a809843f715 src/org/RhinoTests/ScriptEngineFactoryClassTest.java
--- a/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Mon Oct 07 11:17:33 2013 +0200
+++ b/src/org/RhinoTests/ScriptEngineFactoryClassTest.java Tue Oct 08 10:06:10 2013 +0200
@@ -1324,6 +1324,196 @@
}
/**
+ * Test for method javax.script.ScriptEngineFactory.getClass().cast()
+ */
+ protected void testCast() {
+ try {
+ this.scriptEngineFactoryClass.cast(new Object());
+ throw new AssertionError("Class.cast(new Object()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new Object().getClass());
+ throw new AssertionError("Class.cast(new Object().getClass()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new String());
+ throw new AssertionError("Class.cast(new String()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(Boolean.valueOf(true));
+ throw new AssertionError("Class.cast(Boolean.valueOf(true)) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(Boolean.valueOf(false));
+ throw new AssertionError("Class.cast(Boolean.valueOf(false)) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(Byte.valueOf((byte)42));
+ throw new AssertionError("Class.cast(Byte.valueOf((byte)42)) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(Short.valueOf((short)42));
+ throw new AssertionError("Class.cast(Short.valueOf((short)42)) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(Integer.valueOf(42));
+ throw new AssertionError("Class.cast(Integer.valueOf(42)) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(Long.valueOf(42L));
+ throw new AssertionError("Class.cast(Long.valueOf(42L)) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(Float.valueOf(42f));
+ throw new AssertionError("Class.cast(Float.valueOf(42f)) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(Double.valueOf(42.));
+ throw new AssertionError("Class.cast(Double.valueOf(42.)) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new Throwable());
+ throw new AssertionError("Class.cast(new Throwable()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new RuntimeException());
+ throw new AssertionError("Class.cast(new RuntimeException()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new Error());
+ throw new AssertionError("Class.cast(new Error()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new java.lang.String());
+ throw new AssertionError("Class.cast(new java.lang.String()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new java.lang.StringBuffer());
+ throw new AssertionError("Class.cast(new java.lang.StringBuffer()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new java.lang.StringBuilder());
+ throw new AssertionError("Class.cast(new java.lang.StringBuilder()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(java.awt.Color.black);
+ throw new AssertionError("Class.cast(java.awt.Color.black) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new java.awt.Frame());
+ throw new AssertionError("Class.cast(new java.awt.Frame()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new java.awt.Frame(new String()));
+ throw new AssertionError("Class.cast(new java.awt.Frame(new String())) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new javax.swing.JLabel());
+ throw new AssertionError("Class.cast(new javax.swing.JLabel()) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new javax.swing.JLabel(new String()));
+ throw new AssertionError("Class.cast(new javax.swing.JLabel(new String())) does not throw any exception");
+ }
+ catch (Exception e) {
+ // expected exception
+ }
+
+ try {
+ this.scriptEngineFactoryClass.cast(new javax.swing.JPanel());
+ throw new AssertionError("Class.cast(new javax.swing.JPanel()) 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