use of de.neemann.digital.data.ValueTable in project Digital by hneemann.
the class TestResultTest method testResultDontCareInput.
public void testResultDontCareInput() throws Exception {
Model model = getModel("A*0+B");
TestCaseDescription data = new TestCaseDescription("A B Y\n" + "x 0 0\n" + "x 1 1\n");
TestExecutor te = new TestExecutor(data).create(model);
ValueTable tr = te.getResult();
assertEquals(4, tr.getRows());
assertTrue(te.allPassed());
}
Aggregations