Customer cust = local.findCustomer(id);
assertNotNull(cust);
System.out.println("Successfully created and found Gavin from @Local interface");
id = remote.createCustomer("Emmanuel");
cust = remote.findCustomer(id);
assertNotNull(cust);
System.out.println("Successfully created and found Emmanuel from @Remote interface");
}
public void testEntityManager() throws Exception