@SuppressWarnings("rawtypes")
@Test
public void testWildcardProcessorCanProcess() {
WildcardProcessor processor = this.parser.new WildcardProcessor();
Assert.assertTrue(processor.canProcess(new Predicate(OperationKey.STARTS_WITH, SOME_VALUE)));
Assert.assertTrue(processor.canProcess(new Predicate(OperationKey.ENDS_WITH, SOME_VALUE)));
Assert.assertTrue(processor.canProcess(new Predicate(OperationKey.CONTAINS, SOME_VALUE)));
assertProcessorCannotProcessInvalidOrNullOperationKey(processor);
}
@SuppressWarnings("rawtypes")