Add simple test for correct upvalue handling.

This commit is contained in:
Ian Farmer
2007-07-09 01:43:34 +00:00
parent 62022d5881
commit 45964d7e22
3 changed files with 29 additions and 0 deletions

View File

@@ -43,6 +43,10 @@ public class LuaJTest extends TestCase {
runTest( "test7" );
}
public void testUpvalues() throws IOException, InterruptedException {
runTest( "upvalues" );
}
private void runTest( String testName ) throws IOException, InterruptedException {
// add LuaJava bindings
LuaJava.install();