import com.netflix.lipstick.test.util.Util;
public class P2jPlanGeneratorTest {
@Test
public void generalTest() throws Exception {
LipstickPigServer lps = new LipstickPigServer("local");
lps.setBatchOn();
lps.registerScript("./src/test/resources/test.pig");
P2jPlanGenerator opg = new P2jPlanGenerator(lps.getLP(null));
P2jPlan plan = opg.getP2jPlan();
// Build a map of scope to id from the built plan
Map<String, String> scopeToIdMap = new HashMap<String, String>();