getLog().debug("Create a bean...");
doEjbCreate(pk, BEAN_NAME);
getLog().debug("OK");
getLog().debug("Use a finder method to retrieve the bean...");
bean = home.findByPrimaryKey( pk );
getLog().debug("OK");
getLog().debug("Assert it is the same bean as passed to a method..." );
// Send to a method as a reference, make sure it is usable by the method
assertTrue( this.gotRefOkay(bean, BEAN_NAME) );