@Test
public void testUnactivatedLoad()
{
ObjectStore os = ObjectStore.Factory.create();
ObjectStoreSession oss = os.beginSession();
Key key = oss.store(new Foo("Fred Flintstone")).now();
ObjectStoreSession oss2 = os.beginSession();
Foo foo = oss2.load(key).unactivated().now();
assertTrue(foo.name == null);
assertEquals(key, oss2.getKey(foo));