RevCommit commit = git.commit().setMessage("committing junk file").call();
//make sure master has our commit
assertTrue(GitHelper.isMergedInto(git, commit, flow.getMasterBranchName()));
flow.hotfixStart("1.0").call();
assertEquals(flow.getHotfixBranchPrefix() + "1.0", git.getRepository().getBranch());
//the hotfix branch should have our commit
assertTrue("hotfix branch does not have our commit: " + commit.toString(), GitHelper.isMergedInto(git, commit, flow.getHotfixBranchPrefix() + "1.0"));