/hg/rhino-tests: Added new test into the test case src/org/Rhino...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Dec 7 04:59:17 PST 2012
changeset bfef6c437043 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=bfef6c437043
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Dec 07 14:01:56 2012 +0100
Added new test into the test case src/org/RhinoTests/AbstractScriptEngineClassTest.java.
diffstat:
ChangeLog | 5 +++
src/org/RhinoTests/AbstractScriptEngineClassTest.java | 29 +++++++++++++++++++
2 files changed, 34 insertions(+), 0 deletions(-)
diffs (51 lines):
diff -r 78f32c582232 -r bfef6c437043 ChangeLog
--- a/ChangeLog Thu Dec 06 11:19:13 2012 +0100
+++ b/ChangeLog Fri Dec 07 14:01:56 2012 +0100
@@ -1,3 +1,8 @@
+2012-12-07 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/AbstractScriptEngineClassTest.java:
+ Added new test into this test case.
+
2012-12-06 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/JavaScriptSnippets.java:
diff -r 78f32c582232 -r bfef6c437043 src/org/RhinoTests/AbstractScriptEngineClassTest.java
--- a/src/org/RhinoTests/AbstractScriptEngineClassTest.java Thu Dec 06 11:19:13 2012 +0100
+++ b/src/org/RhinoTests/AbstractScriptEngineClassTest.java Fri Dec 07 14:01:56 2012 +0100
@@ -387,6 +387,35 @@
}
/**
+ * Test for method javax.script.AbstractScriptEngine.getClass().getField()
+ */
+ protected void testGetField() {
+ // following fields should exists
+ final String[] fieldsThatShouldExists = {
+ "ARGV",
+ "FILENAME",
+ "ENGINE",
+ "ENGINE_VERSION",
+ "NAME",
+ "LANGUAGE",
+ "LANGUAGE_VERSION",
+ };
+ // check if all required fields really exists
+ for (String fieldThatShouldExists : fieldsThatShouldExists) {
+ try {
+ Field field = this.abstractScriptEngineClass.getField(fieldThatShouldExists);
+ String fieldName = field.getName();
+ assertTrue(fieldName.equals(fieldThatShouldExists),
+ "field " + fieldThatShouldExists + " not found");
+ }
+ catch (Exception e) {
+ e.printStackTrace();
+ throw new AssertionError(e.getMessage());
+ }
+ }
+ }
+
+ /**
* Test for method javax.script.AbstractScriptEngine.getClass().getMethods()
*/
protected void testGetMethods() {
More information about the distro-pkg-dev
mailing list