/hg/rhino-tests: Fixed minor issues in CompiledScriptClassTest t...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed May 29 04:18:59 PDT 2013
changeset 08a0486c9c98 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=08a0486c9c98
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed May 29 13:22:26 2013 +0200
Fixed minor issues in CompiledScriptClassTest test case.
diffstat:
ChangeLog | 5 +++
src/org/RhinoTests/CompiledScriptClassTest.java | 36 +++++++++++++++++++++++-
2 files changed, 39 insertions(+), 2 deletions(-)
diffs (79 lines):
diff -r 3604b6b22396 -r 08a0486c9c98 ChangeLog
--- a/ChangeLog Tue May 28 10:42:15 2013 +0200
+++ b/ChangeLog Wed May 29 13:22:26 2013 +0200
@@ -1,3 +1,8 @@
+2013-05-29 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/CompiledScriptClassTest.java:
+ Fixed minor issues.
+
2013-05-28 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/CompilableClassTest.java:
diff -r 3604b6b22396 -r 08a0486c9c98 src/org/RhinoTests/CompiledScriptClassTest.java
--- a/src/org/RhinoTests/CompiledScriptClassTest.java Tue May 28 10:42:15 2013 +0200
+++ b/src/org/RhinoTests/CompiledScriptClassTest.java Wed May 29 13:22:26 2013 +0200
@@ -960,6 +960,9 @@
final String[] annotationsThatShouldExists_jdk7 = {
};
+ final String[] annotationsThatShouldExists_jdk8 = {
+ };
+
// get all annotations
Annotation[] annotations = this.compiledScriptClass.getAnnotations();
// and transform the array into a list of annotation names
@@ -967,7 +970,20 @@
for (Annotation annotation : annotations) {
annotationsAsString.add(annotation.toString());
}
- String[] annotationsThatShouldExists = getJavaVersion() < 7 ? annotationsThatShouldExists_jdk6 : annotationsThatShouldExists_jdk7;
+
+ String[] annotationsThatShouldExists = null;
+ switch (getJavaVersion()) {
+ case 6:
+ annotationsThatShouldExists = annotationsThatShouldExists_jdk6;
+ break;
+ case 7:
+ annotationsThatShouldExists = annotationsThatShouldExists_jdk7;
+ break;
+ case 8:
+ annotationsThatShouldExists = annotationsThatShouldExists_jdk8;
+ break;
+ }
+
// check if all required annotations really exists
for (String annotationThatShouldExists : annotationsThatShouldExists) {
assertTrue(annotationsAsString.contains(annotationThatShouldExists),
@@ -986,6 +1002,9 @@
final String[] annotationsThatShouldExists_jdk7 = {
};
+ final String[] annotationsThatShouldExists_jdk8 = {
+ };
+
// get all annotations
Annotation[] annotations = this.compiledScriptClass.getDeclaredAnnotations();
// and transform the array into a list of annotation names
@@ -993,7 +1012,20 @@
for (Annotation annotation : annotations) {
annotationsAsString.add(annotation.toString());
}
- String[] annotationsThatShouldExists = getJavaVersion() < 7 ? annotationsThatShouldExists_jdk6 : annotationsThatShouldExists_jdk7;
+
+ String[] annotationsThatShouldExists = null;
+ switch (getJavaVersion()) {
+ case 6:
+ annotationsThatShouldExists = annotationsThatShouldExists_jdk6;
+ break;
+ case 7:
+ annotationsThatShouldExists = annotationsThatShouldExists_jdk7;
+ break;
+ case 8:
+ annotationsThatShouldExists = annotationsThatShouldExists_jdk8;
+ break;
+ }
+
// check if all required annotations really exists
for (String annotationThatShouldExists : annotationsThatShouldExists) {
assertTrue(annotationsAsString.contains(annotationThatShouldExists),
More information about the distro-pkg-dev
mailing list