home.clearUnsetEntityContextCallCounter();
// after this call the counter should be 2
assertEquals("UnsetEntityContextCallCount", 1, home.getUnsetEntityContextCallCounter());
UnsetEntityContext bean = home.create("TestBean");
// after this call the counter should be 3 (the bean should be returned to the pool?)
bean.remove();
// after this call the counter should be 4
// TODO - this assertion fails!
// assertEquals("UnsetEntityContextCallCount", 3, home.getUnsetEntityContextCallCounter());
}