/hg/rhino-tests: Five new tests & fixed some minor issues in the...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Sep 21 04:01:56 PDT 2012
changeset 0c41d28346b9 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=0c41d28346b9
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Sep 21 13:04:34 2012 +0200
Five new tests & fixed some minor issues in the test case
src/org/RhinoTests/CompiledScriptClassTest.java.
diffstat:
ChangeLog | 5 ++
src/org/RhinoTests/CompiledScriptClassTest.java | 62 +++++++++++++++++++++++-
2 files changed, 63 insertions(+), 4 deletions(-)
diffs (108 lines):
diff -r c07fce915c2b -r 0c41d28346b9 ChangeLog
--- a/ChangeLog Thu Sep 20 12:05:21 2012 +0200
+++ b/ChangeLog Fri Sep 21 13:04:34 2012 +0200
@@ -1,3 +1,8 @@
+2012-09-21 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/CompiledScriptClassTest.java:
+ Five new tests & fixed some minor issues.
+
2012-09-20 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/CompilableTest.java:
diff -r c07fce915c2b -r 0c41d28346b9 src/org/RhinoTests/CompiledScriptClassTest.java
--- a/src/org/RhinoTests/CompiledScriptClassTest.java Thu Sep 20 12:05:21 2012 +0200
+++ b/src/org/RhinoTests/CompiledScriptClassTest.java Fri Sep 21 13:04:34 2012 +0200
@@ -190,10 +190,64 @@
}
/**
+ * Test for method javax.script.CompiledScript.getClass().isAnnotation()
+ */
+ protected void testIsAnnotation() {
+ assertFalse(this.compiledScriptClass.isAnnotation(),
+ "Method CompiledScript.getClass().isAnnotation() returns wrong value");
+ }
+
+ /**
+ * Test for method javax.script.CompiledScript.getClass().isAnnotationPresent()
+ */
+ protected void testIsAnnotationPresent() {
+ assertFalse(this.compiledScriptClass.isAnnotationPresent(java.lang.annotation.Annotation.class),
+ "Method CompiledScript.getClass().isAnnotationPresent(java.lang.annotation.Annotation.class) returns wrong value");
+ assertFalse(this.compiledScriptClass.isAnnotationPresent(java.lang.annotation.Documented.class),
+ "Method CompiledScript.getClass().isAnnotationPresent(java.lang.annotation.Documented.class) returns wrong value");
+ assertFalse(this.compiledScriptClass.isAnnotationPresent(java.lang.annotation.Inherited.class),
+ "Method CompiledScript.getClass().isAnnotationPresent(java.lang.annotation.Inherited.class) returns wrong value");
+ assertFalse(this.compiledScriptClass.isAnnotationPresent(java.lang.annotation.Retention.class),
+ "Method CompiledScript.getClass().isAnnotationPresent(java.lang.annotation.Retention.class) returns wrong value");
+ assertFalse(this.compiledScriptClass.isAnnotationPresent(java.lang.annotation.Target.class),
+ "Method CompiledScript.getClass().isAnnotationPresent(java.lang.annotation.Target.class) returns wrong value");
+ assertFalse(this.compiledScriptClass.isAnnotationPresent(java.lang.Deprecated.class),
+ "Method CompiledScript.getClass().isAnnotationPresent(java.lang.Deprecated.class) returns wrong value");
+ assertFalse(this.compiledScriptClass.isAnnotationPresent(java.lang.Override.class),
+ "Method CompiledScript.getClass().isAnnotationPresent(java.lang.Override.class) returns wrong value");
+ assertFalse(this.compiledScriptClass.isAnnotationPresent(java.lang.SuppressWarnings.class),
+ "Method CompiledScript.getClass().isAnnotationPresent(java.lang.SuppressWarnings.class) returns wrong value");
+ }
+
+ /**
+ * Test for method javax.script.CompiledScript.getClass().isAnonymousClass()
+ */
+ protected void testIsAnonymousClass() {
+ assertFalse(this.compiledScriptClass.isAnonymousClass(),
+ "Method CompiledScript.getClass().isAnonymousClass() returns wrong value");
+ }
+
+ /**
+ * Test for method javax.script.CompiledScript.getClass().isArray()
+ */
+ protected void testIsArray() {
+ assertFalse(this.compiledScriptClass.isArray(),
+ "Method CompiledScript.getClass().isArray() returns wrong value");
+ }
+
+ /**
+ * Test for method javax.script.CompiledScript.getClass().isEnum()
+ */
+ protected void testIsEnum() {
+ assertFalse(this.compiledScriptClass.isEnum(),
+ "Method CompiledScript.getClass().isEnum() returns wrong value");
+ }
+
+ /**
* Test for method javax.script.CompiledScript.getClass().getInterfaces()
*/
protected void testGetInterfaces() {
- List interfaces = Arrays.asList(this.compiledScriptClass.getInterfaces());
+ List<Class<?>> interfaces = Arrays.asList(this.compiledScriptClass.getInterfaces());
assertTrue(interfaces.isEmpty(),
"list of implemented interfaces should be empty");
}
@@ -261,7 +315,7 @@
* Test for method javax.script.CompiledScript.getClass().getSuperclass()
*/
protected void testGetSuperclass() {
- Class superClass = this.compiledScriptClass.getSuperclass();
+ Class<?> superClass = this.compiledScriptClass.getSuperclass();
String superClassName = superClass.getName();
assertEquals(superClassName, "java.lang.Object",
"Method CompiledScript.getClass().getSuperclass() returns wrong value " + superClassName);
@@ -271,7 +325,7 @@
* Test for method javax.script.CompiledScript.getClass().getConstructors()
*/
protected void testGetConstructors() {
- Constructor[] constructors = this.compiledScriptClass.getConstructors();
+ Constructor<?>[] constructors = this.compiledScriptClass.getConstructors();
assertEquals(constructors.length, 1, "only one constructor should be set");
String constructorName;
String constructorString;
@@ -287,7 +341,7 @@
* Test for method javax.script.CompiledScript.getClass().getDeclaredConstructors()
*/
protected void testGetDeclaredConstructors() {
- Constructor[] constructors = this.compiledScriptClass.getDeclaredConstructors();
+ Constructor<?>[] constructors = this.compiledScriptClass.getDeclaredConstructors();
assertEquals(constructors.length, 1, "only one constructor should be set");
String constructorName;
String constructorString;
More information about the distro-pkg-dev
mailing list