Fix the NOT instruction. Includes test case.

This commit is contained in:
Ian Farmer
2007-07-21 04:08:28 +00:00
parent c0f054549b
commit b4ac032fd7
4 changed files with 36 additions and 1 deletions

View File

@@ -43,6 +43,10 @@ public class LuaJTest extends TestCase {
runTest( "test7" );
}
public void testBoolean() throws IOException, InterruptedException {
runTest( "boolean" );
}
public void testCompare() throws IOException, InterruptedException {
runTest( "compare" );
}