Remove support for lua2java within luaj.
This commit is contained in:
@@ -23,7 +23,6 @@ package org.luaj.vm2;
|
||||
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
import org.luaj.vm2.lua2java.Lua2Java;
|
||||
import org.luaj.vm2.luajc.LuaJC;
|
||||
|
||||
/**
|
||||
@@ -80,21 +79,9 @@ public class CompatibiltyTest extends TestSuite {
|
||||
suite.addTest( new TestSuite( JseCompatibilityTest.class, "JSE Tests" ) );
|
||||
suite.addTest( new TestSuite( JmeCompatibilityTest.class, "JME Tests" ) );
|
||||
suite.addTest( new TestSuite( LuaJCTest.class, "JSE Bytecode Tests" ) );
|
||||
suite.addTest( new TestSuite( Lua2JavaTest.class, "Lua2Java Tests" ) );
|
||||
return suite;
|
||||
}
|
||||
|
||||
public static class Lua2JavaTest extends CompatibiltyTestSuite {
|
||||
public Lua2JavaTest() {
|
||||
super(ScriptDrivenTest.PlatformType.LUA2JAVA);
|
||||
}
|
||||
protected void setUp() throws Exception {
|
||||
super.setUp();
|
||||
System.setProperty("JME", "false");
|
||||
Lua2Java.install();
|
||||
}
|
||||
}
|
||||
|
||||
public static class JmeCompatibilityTest extends CompatibiltyTestSuite {
|
||||
public JmeCompatibilityTest() {
|
||||
super(ScriptDrivenTest.PlatformType.JME);
|
||||
|
||||
Reference in New Issue
Block a user