import junit.framework.TestCase;
public class TestExperimentalLogToPhyTranslationVisitor extends TestCase {
private PhysicalPlan translatePlan(OperatorPlan plan) throws IOException {
LogToPhyTranslationVisitor visitor = new LogToPhyTranslationVisitor(plan);
visitor.visit();
return visitor.getPhysicalPlan();
}