return null;
}
public void testNothing() {
try {
ComponentFactory cf = new ComponentFactory(getContext(), getNothing());
cf.start();
ComponentInstance ci = cf.createComponentInstance(props);
ci.dispose();
cf.stop();
fail("A lifecycle callback with a missing method and transition must be rejected " + cf);
} catch (ConfigurationException e) {
// OK
} catch (UnacceptableConfiguration e) {
fail("Unexpected exception when creating an instance : " + e.getMessage());