/hg/rhino-tests: Four new tests added into this test suite: test...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Feb 6 01:26:46 PST 2013
changeset a9f65433ce81 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=a9f65433ce81
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Feb 06 10:29:46 2013 +0100
Four new tests added into this test suite: testGetClasses(),
testGetDeclaredClasses(), testGetComponentType() and
testGetAnnotation().
diffstat:
ChangeLog | 7 ++++
src/org/RhinoTests/InvocableClassTest.java | 49 ++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+), 0 deletions(-)
diffs (73 lines):
diff -r 3a438f8082f6 -r a9f65433ce81 ChangeLog
--- a/ChangeLog Tue Feb 05 11:08:40 2013 +0100
+++ b/ChangeLog Wed Feb 06 10:29:46 2013 +0100
@@ -1,3 +1,10 @@
+2013-02-06 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/InvocableClassTest.java:
+ Four new tests added into this test suite: testGetClasses(),
+ testGetDeclaredClasses(), testGetComponentType() and
+ testGetAnnotation().
+
2013-02-05 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/SimpleScriptContextClassTest.java:
diff -r 3a438f8082f6 -r a9f65433ce81 src/org/RhinoTests/InvocableClassTest.java
--- a/src/org/RhinoTests/InvocableClassTest.java Tue Feb 05 11:08:40 2013 +0100
+++ b/src/org/RhinoTests/InvocableClassTest.java Wed Feb 06 10:29:46 2013 +0100
@@ -568,6 +568,55 @@
}
/**
+ * Test for method javax.script.Invocable.getClass().getAnnotation()
+ */
+ protected void testGetAnnotation() {
+ Annotation annotation;
+ annotation = this.invocableClass.getAnnotation(java.lang.annotation.Annotation.class);
+ assertNull(annotation, "annotation java.lang.annotation.Annotation should not be returned");
+ annotation = this.invocableClass.getAnnotation(java.lang.annotation.Documented.class);
+ assertNull(annotation, "annotation java.lang.annotation.Documented should not be returned");
+ annotation = this.invocableClass.getAnnotation(java.lang.annotation.Inherited.class);
+ assertNull(annotation, "annotation java.lang.annotation.Inherited should not be returned");
+ annotation = this.invocableClass.getAnnotation(java.lang.annotation.Retention.class);
+ assertNull(annotation, "annotation java.lang.annotation.Retention should not be returned");
+ annotation = this.invocableClass.getAnnotation(java.lang.annotation.Target.class);
+ assertNull(annotation, "annotation java.lang.annotation.Target should not be returned");
+ annotation = this.invocableClass.getAnnotation(java.lang.Deprecated.class);
+ assertNull(annotation, "annotation java.lang.Deprecated should not be returned");
+ annotation = this.invocableClass.getAnnotation(java.lang.Override.class);
+ assertNull(annotation, "annotation java.lang.Override should not be returned");
+ annotation = this.invocableClass.getAnnotation(java.lang.SuppressWarnings.class);
+ assertNull(annotation, "annotation java.lang.SuppressWarnings should not be returned");
+ }
+
+ /**
+ * Test for method javax.script.Invocable.getClass().getComponentType()
+ */
+ protected void testGetComponentType() {
+ Class<?> cls = this.invocableClass.getComponentType();
+ assertNull(cls, "getComponentType() should returns null");
+ }
+
+ /**
+ * Test for method javax.script.Invocable.getClass().getClasses()
+ */
+ protected void testGetClasses() {
+ Class<?>[] cls = this.invocableClass.getClasses();
+ assertNotNull(cls, "getClasses() returns null");
+ assertEquals(cls.length, 0, "getClasses() returns wrong value!");
+ }
+
+ /**
+ * Test for method javax.script.Invocable.getClass().getDeclaredClasses()
+ */
+ protected void testGetDeclaredClasses() {
+ Class<?>[] cls = this.invocableClass.getDeclaredClasses();
+ assertNotNull(cls, "getDeclaredClasses() returns null");
+ assertEquals(cls.length, 0, "getDeclaredClasses() returns wrong value!");
+ }
+
+ /**
* Test for instanceof operator applied to a class javax.script.Invocable
*/
@SuppressWarnings("cast")
More information about the distro-pkg-dev
mailing list