String inputfile = generateTempFile().getAbsolutePath() ;
String outputfile = generateNonExistenceTempFile().getAbsolutePath() ;
LogicalPlan plan = genNewLoadStorePlan(inputfile, outputfile, ctx.getFs()) ;
InputOutputFileValidatorVisitor visitor = new InputOutputFileValidatorVisitor(plan, ctx) ;
visitor.visit();
}
@Test(expected = VisitorException.class) //should expect an exception
public void testLocalModeNegative2() throws Throwable {
String inputfile = generateTempFile().getAbsolutePath() ;