public void testDLTestMatchSucceedsWithMatchedExample() throws Exception {
DataSet ds = DataSetFactory.getRestaurantDataSet();
Example e = ds.getExample(0);
DLTest test = new DLTest();
test.add("type", "French");
Assert.assertTrue(test.matches(e));
}
@Test
public void testDLTestMatchFailsOnMismatchedExample() throws Exception {
DataSet ds = DataSetFactory.getRestaurantDataSet();