e.getComponent(ComponentX.class);
}
}
public void test_access_component_after_deletion_in_previous_system() {
world.setSystem(new SystemComponentXRemover());
world.setSystem(new SystemB());
world.initialize();
Entity e = world.createEntity();
e.edit().create(ComponentX.class);