@Test
 public void testCreateKeyPathFromPath() {
   File file = new File("/Users/dankerrigan/data.data");
   File newPath = KeyJournal.createKeyPathFromPath(file, false);
   assertTrue(newPath.getAbsolutePath().compareTo("/Users/dankerrigan/data.keys") == 0);
   newPath = KeyJournal.createKeyPathFromPath(file, true);
   assertTrue(newPath.getAbsolutePath().compareTo("/Users/dankerrigan/data.loadedkeys") == 0);
 }