@SuppressWarnings("unchecked")
@Test
public void loadNonexistantWithoutSession() throws Exception {
fact().register(Trivial.class);
Trivial triv1 = new Trivial("foo5", 5);
ofy().save().entity(triv1).now();
Key<Trivial> triv1Key = Key.create(triv1);
Key<Trivial> triv2Key = Key.create(Trivial.class, 998);
Key<Trivial> triv3Key = Key.create(Trivial.class, 999);