package alice.tuprolog; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import org.junit.Before; import org.junit.Test; public class NonvarTest { Prolog engine; @Before public void setUp() { engine = new Prolog(); } @Test public void test0() throws PrologException { SolveInfo solution = engine.solve("nonvar(33.3)."); assertTrue(solution.isSuccess()); } @Test public void test1() throws PrologException { SolveInfo solution = engine.solve("nonvar(foo)."); assertTrue(solution.isSuccess()); } @Test public void test2() throws PrologException { SolveInfo solution = engine.solve("nonvar(Foo)."); assertFalse(solution.isSuccess()); } @Test public void test3() throws PrologException { SolveInfo solution = engine.solve("foo = Foo, nonvar(Foo)."); assertTrue(solution.isSuccess()); } @Test public void test4() throws PrologException { SolveInfo solution = engine.solve("nonvar(a(b))."); assertTrue(solution.isSuccess()); } }