}
@Test public void AsyncTransaction()
{
AsyncFlow flow = new AsyncFlow("a");
MyFlow flow2 = new MyFlow("b");
TrailWrapper wrap1 = new TrailWrapper(flow);
TrailWrapper wrap2 = new TrailWrapper(flow2);
Flow2Wrapper flowBoth = new Flow2Wrapper("asyncwrap", wrap1, wrap2);
TrailWrapper wrap3 = new TrailWrapper(flowBoth);
SRInstance run = StartIt(wrap3);
assertEquals("pause", false, run.isPaused());
Proceed(run, "222");
assertEquals("pause", true, run.isPaused());