/hg/rhino-tests: New tests added into ScriptExceptionClassTest t...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Mar 18 03:04:13 PDT 2013


changeset 6832982188e2 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=6832982188e2
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Mar 18 11:07:23 2013 +0100

	New tests added into ScriptExceptionClassTest test suite.


diffstat:

 ChangeLog                                        |   5 +
 src/org/RhinoTests/ScriptExceptionClassTest.java |  81 ++++++++++++++++++++++++
 2 files changed, 86 insertions(+), 0 deletions(-)

diffs (103 lines):

diff -r 7ea64ea424ed -r 6832982188e2 ChangeLog
--- a/ChangeLog	Fri Mar 15 09:58:16 2013 +0100
+++ b/ChangeLog	Mon Mar 18 11:07:23 2013 +0100
@@ -1,3 +1,8 @@
+2013-03-18  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/RhinoTests/ScriptExceptionClassTest.java:
+	New tests added into ScriptExceptionClassTest test suite.
+
 2013-03-15  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/RhinoTests/CompiledScriptClassTest.java:
diff -r 7ea64ea424ed -r 6832982188e2 src/org/RhinoTests/ScriptExceptionClassTest.java
--- a/src/org/RhinoTests/ScriptExceptionClassTest.java	Fri Mar 15 09:58:16 2013 +0100
+++ b/src/org/RhinoTests/ScriptExceptionClassTest.java	Mon Mar 18 11:07:23 2013 +0100
@@ -824,6 +824,87 @@
     }
 
     /**
+     * Test for method javax.script.ScriptException.getClass().getAnnotation()
+     */
+    protected void testGetAnnotation() {
+        Annotation annotation;
+        annotation = this.scriptExceptionClass.getAnnotation(java.lang.annotation.Annotation.class);
+        assertNull(annotation, "annotation java.lang.annotation.Annotation should not be returned");
+        annotation = this.scriptExceptionClass.getAnnotation(java.lang.annotation.Documented.class);
+        assertNull(annotation, "annotation java.lang.annotation.Documented should not be returned");
+        annotation = this.scriptExceptionClass.getAnnotation(java.lang.annotation.Inherited.class);
+        assertNull(annotation, "annotation java.lang.annotation.Inherited should not be returned");
+        annotation = this.scriptExceptionClass.getAnnotation(java.lang.annotation.Retention.class);
+        assertNull(annotation, "annotation java.lang.annotation.Retention should not be returned");
+        annotation = this.scriptExceptionClass.getAnnotation(java.lang.annotation.Target.class);
+        assertNull(annotation, "annotation java.lang.annotation.Target should not be returned");
+        annotation = this.scriptExceptionClass.getAnnotation(java.lang.Deprecated.class);
+        assertNull(annotation, "annotation java.lang.Deprecated should not be returned");
+        annotation = this.scriptExceptionClass.getAnnotation(java.lang.Override.class);
+        assertNull(annotation, "annotation java.lang.Override should not be returned");
+        annotation = this.scriptExceptionClass.getAnnotation(java.lang.SuppressWarnings.class);
+        assertNull(annotation, "annotation java.lang.SuppressWarnings should not be returned");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getComponentType()
+     */
+    protected void testGetComponentType() {
+        Class<?> cls = this.scriptExceptionClass.getComponentType();
+        assertNull(cls, "getComponentType() should returns null");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getClasses()
+     */
+    protected void testGetClasses() {
+        Class<?>[] cls = this.scriptExceptionClass.getClasses();
+        assertNotNull(cls, "getClasses() returns null");
+        assertEquals(cls.length, 0, "getClasses() returns wrong value!");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getDeclaredClasses()
+     */
+    protected void testGetDeclaredClasses() {
+        Class<?>[] cls = this.scriptExceptionClass.getDeclaredClasses();
+        assertNotNull(cls, "getDeclaredClasses() returns null");
+        assertEquals(cls.length, 0, "getDeclaredClasses() returns wrong value!");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getDeclaringClass()
+     */
+    protected void testGetDeclaringClass() {
+        Class<?> cls = this.scriptExceptionClass.getDeclaringClass();
+        assertNull(cls, "getDeclaringClass() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getEnclosingClass()
+     */
+    protected void testGetEnclosingClass() {
+        Class<?> cls = this.scriptExceptionClass.getEnclosingClass();
+        assertNull(cls, "getEnclosingClass() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getEnclosingConstructor()
+     */
+    protected void testGetEnclosingConstructor() {
+        Constructor<?> cons = this.scriptExceptionClass.getEnclosingConstructor();
+        assertNull(cons, "getEnclosingConstructor() does not return null");
+    }
+
+    /**
+     * Test for method javax.script.ScriptException.getClass().getEnclosingMethod()
+     */
+    protected void testGetEnclosingMethod() {
+        Method m = this.scriptExceptionClass.getEnclosingMethod();
+        assertNull(m, "getEnclosingMethod() does not return null");
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.ScriptException
      */
     @SuppressWarnings("cast")



More information about the distro-pkg-dev mailing list