}
@Test
public void testMergeAndCommit() throws Exception {
File repoLoc = RepoUtils.createEmptyDir("composite-scenario-2");
HgRepository hgRepo = new HgInitCommand().location(repoLoc).revlogV1().execute();
Path fa = Path.create("file1"), fb = Path.create("file2"), fc = Path.create("file3");
final File fileA = new File(repoLoc, fa.toString());
final File fileB = new File(repoLoc, fb.toString());
// rev0: +file1, +file2
RepoUtils.createFile(fileA, "first file");