/hg/rhino-tests: Updated four tests in ScriptContextClassTest fo...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Apr 19 01:44:03 PDT 2013
changeset 55e3f28c9808 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=55e3f28c9808
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Apr 19 10:47:17 2013 +0200
Updated four tests in ScriptContextClassTest for (Open)JDK8 API:
getConstructor, getDeclaredConstructor, getConstructors and
getDeclaredConstructors.
diffstat:
ChangeLog | 7 +++
src/org/RhinoTests/ScriptContextClassTest.java | 56 ++++++++++++++++++++++++-
2 files changed, 59 insertions(+), 4 deletions(-)
diffs (107 lines):
diff -r 9f4e67bc0396 -r 55e3f28c9808 ChangeLog
--- a/ChangeLog Wed Apr 17 09:40:21 2013 +0200
+++ b/ChangeLog Fri Apr 19 10:47:17 2013 +0200
@@ -1,3 +1,10 @@
+2013-04-19 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/ScriptContextClassTest.java:
+ Updated four tests in ScriptContextClassTest for (Open)JDK8 API:
+ getConstructor, getDeclaredConstructor, getConstructors and
+ getDeclaredConstructors.
+
2013-04-17 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/InvocableClassTest.java:
diff -r 9f4e67bc0396 -r 55e3f28c9808 src/org/RhinoTests/ScriptContextClassTest.java
--- a/src/org/RhinoTests/ScriptContextClassTest.java Wed Apr 17 09:40:21 2013 +0200
+++ b/src/org/RhinoTests/ScriptContextClassTest.java Fri Apr 19 10:47:17 2013 +0200
@@ -288,10 +288,21 @@
Map<String, String> testedConstructors = null;
Map<String, String> testedConstructors_jdk6 = new HashMap<String, String>();
Map<String, String> testedConstructors_jdk7 = new HashMap<String, String>();
+ Map<String, String> testedConstructors_jdk8 = new HashMap<String, String>();
// get the right map containing constructor signatures
- testedConstructors = getJavaVersion() < 7 ? testedConstructors_jdk6 : testedConstructors_jdk7;
+ switch (getJavaVersion()) {
+ case 6:
+ testedConstructors = testedConstructors_jdk6;
+ break;
+ case 7:
+ testedConstructors = testedConstructors_jdk7;
+ break;
+ case 8:
+ testedConstructors = testedConstructors_jdk8;
+ break;
+ }
// get all constructors for this class
Constructor<?>[] constructors = this.scriptContextClass.getConstructors();
@@ -310,10 +321,21 @@
Map<String, String> testedConstructors = null;
Map<String, String> testedConstructors_jdk6 = new HashMap<String, String>();
Map<String, String> testedConstructors_jdk7 = new HashMap<String, String>();
+ Map<String, String> testedConstructors_jdk8 = new HashMap<String, String>();
// get the right map containing constructor signatures
- testedConstructors = getJavaVersion() < 7 ? testedConstructors_jdk6 : testedConstructors_jdk7;
+ switch (getJavaVersion()) {
+ case 6:
+ testedConstructors = testedConstructors_jdk6;
+ break;
+ case 7:
+ testedConstructors = testedConstructors_jdk7;
+ break;
+ case 8:
+ testedConstructors = testedConstructors_jdk8;
+ break;
+ }
// get all declared constructors for this class
Constructor<?>[] declaredConstructors = this.scriptContextClass.getDeclaredConstructors();
@@ -332,7 +354,20 @@
Map<String, Class[]> constructorsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
- Map<String, Class[]> constructorsThatShouldExist = getJavaVersion() < 7 ? constructorsThatShouldExist_jdk6 : constructorsThatShouldExist_jdk7;
+ Map<String, Class[]> constructorsThatShouldExist_jdk8 = new TreeMap<String, Class[]>();
+
+ Map<String, Class[]> constructorsThatShouldExist = null;
+ switch (getJavaVersion()) {
+ case 6:
+ constructorsThatShouldExist = constructorsThatShouldExist_jdk6;
+ break;
+ case 7:
+ constructorsThatShouldExist = constructorsThatShouldExist_jdk7;
+ break;
+ case 8:
+ constructorsThatShouldExist = constructorsThatShouldExist_jdk8;
+ break;
+ }
// check if all required constructors really exist
for (Map.Entry<String, Class[]> constructorThatShouldExists : constructorsThatShouldExist.entrySet()) {
@@ -362,7 +397,20 @@
Map<String, Class[]> constructorsThatShouldExist_jdk7 = new TreeMap<String, Class[]>();
- Map<String, Class[]> constructorsThatShouldExist = getJavaVersion() < 7 ? constructorsThatShouldExist_jdk6 : constructorsThatShouldExist_jdk7;
+ Map<String, Class[]> constructorsThatShouldExist_jdk8 = new TreeMap<String, Class[]>();
+
+ Map<String, Class[]> constructorsThatShouldExist = null;
+ switch (getJavaVersion()) {
+ case 6:
+ constructorsThatShouldExist = constructorsThatShouldExist_jdk6;
+ break;
+ case 7:
+ constructorsThatShouldExist = constructorsThatShouldExist_jdk7;
+ break;
+ case 8:
+ constructorsThatShouldExist = constructorsThatShouldExist_jdk8;
+ break;
+ }
// check if all required constructors really exist
for (Map.Entry<String, Class[]> constructorThatShouldExists : constructorsThatShouldExist.entrySet()) {
More information about the distro-pkg-dev
mailing list