}
@Test(expected = KeysNotFoundException.class)
public void testDeleteCommand()
{
ObjectStore os = ObjectStore.Factory.create();
ObjectStoreSession oss = os.beginSession();
Tester t1 = new Tester();
t1.name = "Fred Flintstone";
Key key = oss.store(t1).now();
oss.delete(t1).now();
os.beginSession().load(key).now(); // may not fail because changes not rolled forward see superclass
assertNull(os.beginSession().load(key).retries(0).now());
}