assertEquals("Wrong Schema checks", null, outputBag);
}
@Test
public void testStartsWith() throws IOException {
STARTSWITH startsWith = new STARTSWITH();
Tuple testTuple1 = Util.buildTuple("foo", "bar");
assertFalse("String prefix should not match", startsWith.exec(testTuple1));
Tuple testTuple2 = Util.buildTuple("foobaz", "foo");
assertTrue("String prefix should match", startsWith.exec(testTuple2));
}