flow.add("after");
}
@ConfigureMycilaPlugins
void configure(PluginManager<TestPlugin> pluginManager) {
pluginManager.getCache().registerPlugin("myPlugin", new DefaultTestPlugin() {
public void prepareTestInstance(TestContext context) throws Exception {
flow.add("prepare");
assertEquals(flow.toString(), asList("prepare"), flow);
}