/hg/rhino-tests: Four new tests added into the test suite Compil...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Feb 4 08:27:28 PST 2013
changeset 95723cffb439 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=95723cffb439
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Feb 04 17:30:29 2013 +0100
Four new tests added into the test suite CompilableClassTest.
diffstat:
ChangeLog | 5 ++
src/org/RhinoTests/CompilableClassTest.java | 50 +++++++++++++++++++++++++++++
2 files changed, 55 insertions(+), 0 deletions(-)
diffs (72 lines):
diff -r 358cb09b56b9 -r 95723cffb439 ChangeLog
--- a/ChangeLog Thu Jan 31 09:52:04 2013 +0100
+++ b/ChangeLog Mon Feb 04 17:30:29 2013 +0100
@@ -1,3 +1,8 @@
+2013-02-04 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/CompilableClassTest.java:
+ Four new tests added into the test suite CompilableClassTest.
+
2013-01-31 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/BindingsClassTest.java:
diff -r 358cb09b56b9 -r 95723cffb439 src/org/RhinoTests/CompilableClassTest.java
--- a/src/org/RhinoTests/CompilableClassTest.java Thu Jan 31 09:52:04 2013 +0100
+++ b/src/org/RhinoTests/CompilableClassTest.java Mon Feb 04 17:30:29 2013 +0100
@@ -560,6 +560,56 @@
}
/**
+ * Test for method javax.script.Compilable.getClass().getClasses()
+ */
+ protected void testGetClasses() {
+ Class<?>[] cls = this.compilableClass.getClasses();
+ assertNotNull(cls, "getClasses() returns null");
+ assertEquals(cls.length, 0, "getClasses() returns wrong value!");
+ }
+
+ /**
+ * Test for method javax.script.Compilable.getClass().getDeclaredClasses()
+ */
+ protected void testGetDeclaredClasses() {
+ Class<?>[] cls = this.compilableClass.getDeclaredClasses();
+ assertNotNull(cls, "getDeclaredClasses() returns null");
+ assertEquals(cls.length, 0, "getDeclaredClasses() returns wrong value!");
+ }
+
+ /**
+ * Test for method javax.script.Compilable.getClass().getDeclaringClass()
+ */
+ protected void testGetDeclaringClass() {
+ Class<?> cls = this.compilableClass.getDeclaringClass();
+ assertNull(cls, "getDeclaringClass() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.Compilable.getClass().getEnclosingClass()
+ */
+ protected void testGetEnclosingClass() {
+ Class<?> cls = this.compilableClass.getEnclosingClass();
+ assertNull(cls, "getEnclosingClass() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.Compilable.getClass().getEnclosingConstructor()
+ */
+ protected void testGetEnclosingConstructor() {
+ Constructor<?> cons = this.compilableClass.getEnclosingConstructor();
+ assertNull(cons, "getEnclosingConstructor() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.Compilable.getClass().getEnclosingMethod()
+ */
+ protected void testGetEnclosingMethod() {
+ Method m = this.compilableClass.getEnclosingMethod();
+ assertNull(m, "getEnclosingMethod() does not return null");
+ }
+
+ /**
* Test for instanceof operator applied to a class javax.script.Compilable
*/
@SuppressWarnings("cast")
More information about the distro-pkg-dev
mailing list