Long id = 23353454L;
String kind = factory.getMetadata(Item.class).getKind();
Key value = KeyFactory.createKey(kind, id);
Item pojo = new Item();
Object result = converter.forPojo(value, Item.class, loadContext, pojo);
assertNotNull(result);
assertTrue(result instanceof Item);