@Test
public void testSingleResultFinderMethod() throws Exception {
DataStore.DATA.clear();
final BMPLocalHome home = getHome();
DataStore.DATA.put(888, "VALUE888");
BMPLocalInterface result = home.findByValue("VALUE888");
Assert.assertEquals("VALUE888", result.getMyField());
Assert.assertEquals(888, result.getPrimaryKey());
}