Update javadoc comments related to library inintialization.

This commit is contained in:
James Roseborough
2013-11-22 17:13:55 +00:00
parent 2123d3f924
commit 04fd646c87
14 changed files with 186 additions and 140 deletions

View File

@@ -95,11 +95,13 @@ public class ScriptEngineTests extends TestSuite {
}
public static class LuaJCBindingsTest extends EngineTestCase {
static {
System.setProperty("org.luaj.luajc", "true");
}
protected Bindings createBindings() {
return new SimpleBindings();
}
public void setUp() {
System.setProperty("org.luaj.luajc", "true");
super.setUp();
}
public void testCompiledFunctionIsNotClosure() throws ScriptException {