Assert.assertNotNull("log should not be null", logs);
Assert.assertEquals("log should contain two items", 2, logs.size());
Assert.assertEquals("commit messages should be the same", commitMsgs[0], logs.get(0));
Assert.assertEquals("commit messages should be the same", commitMsgs[1], logs.get(1));
Assert.assertFalse("should contain no stashes", repo.stashList().call().iterator().hasNext());
}
@Test
public void shouldCherryPickChanges() throws Exception
{