@Keys( { @Key(value = "persistenceContextRef.noUnitName"),@Key(value = "persistenceContextRef.noMatches") })
public AppModule noUnitName() {
EjbJar ejbJar = new EjbJar();
ejbJar.addEnterpriseBean(new StatelessBean(FooStatelessOne.class));
EjbModule ejbModule = new EjbModule(ejbJar);
AppModule appModule = new AppModule(ejbModule.getClassLoader(), ejbModule.getJarLocation());
appModule.getEjbModules().add(ejbModule);
PersistenceUnit pu = new PersistenceUnit("fooUnit");
PersistenceUnit pu1 = new PersistenceUnit("fooUnit1");
PersistenceUnit pu2 = new PersistenceUnit("fooUnit");
org.apache.openejb.jee.jpa.unit.Persistence p = new org.apache.openejb.jee.jpa.unit.Persistence(pu, pu1, pu2);