return "com.ArtemisTest";
}
public void test_inject_entity_factories() {
World w = new World();
TypedEntityFactory man = w.setManager(new TypedEntityFactory());
w.initialize();
assertNotNull(man.ship);
assertEquals(Ship.class.getName() + "Impl", man.ship.getClass().getName());
assertNotNull(man.shipNoMethods);