rhino1.7.7.testsrc.org.mozilla.javascript.tests.JsTestsTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.javascript.tests;
import java.io.File;
import java.io.FileFilter;
import java.io.IOException;
import org.mozilla.javascript.drivers.TestUtils;
import org.mozilla.javascript.drivers.JsTestsBase;
public class JsTestsTest extends JsTestsBase {
static final String baseDirectory = "testsrc" + File.separator + "jstests";
static final String jstestsExtension = ".jstest";
public void runJsTests() throws IOException {
File[] tests = TestUtils.recursiveListFiles(new File(baseDirectory),
new FileFilter() {
public boolean accept(File f) {
return f.getName().endsWith(jstestsExtension);
}
});
runJsTests(tests);
}
public void testJsTestsInterpreted() throws IOException {
setOptimizationLevel(-1);
runJsTests();
}
public void testJsTestsCompiled() throws IOException {
setOptimizationLevel(0);
runJsTests();
}
public void testJsTestsOptimized() throws IOException {
setOptimizationLevel(9);
runJsTests();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy