this.getClass().getResource("/config/feed/hive-table-feed-out.xml"));
getStore().publish(EntityType.FEED, outFeed);
Process process = parser.parse(
ProcessEntityParserTest.class.getResourceAsStream("/config/process/process-table.xml"));
Input input = process.getInputs().getInputs().get(0);
Assert.assertFalse(input.isOptional());
parser.validate(process);
// Test Optional Inputs For Table Storage
try {
input.setOptional(Boolean.TRUE);
Assert.assertTrue(input.isOptional());
parser.validate(process);
Assert.fail("Validation exception must have been thrown.");
} catch (FalconException e) {
Assert.assertTrue(e instanceof ValidationException);
}