use of org.eclipse.egit.core.internal.rebase.RebaseInteractivePlan.MoveHelper in project egit by eclipse.
the class RebaseInteractivePlanTest method setUp.
@Override
@Before
public void setUp() throws Exception {
super.setUp();
gitDir = new File(project.getProject().getLocationURI().getPath(), Constants.DOT_GIT);
testRepository = new TestRepository(gitDir);
testRepository.connect(project.getProject());
plan = RebaseInteractivePlan.getPlan(testRepository.getRepository());
toDoElements = new ArrayList<PlanElement>();
moveHelper = new RebaseInteractivePlan.MoveHelper(toDoElements, plan);
}
Aggregations