String[] includes = {"org/jboss/embedded/test/vfs/*.class"};
jar.addResources(DAO.class, includes, null);
jar.mkdir("META-INF").addResource("vfs-test-persistence.xml", "persistence.xml");
Bootstrap.getInstance().deploy(jar);
DAO dao = (DAO)new InitialContext().lookup("DAOBean/local");
dao.create("Bill");
Customer cust = dao.find("Bill");
assertNotNull(cust);
}
}