/* otherwise */"2-1", "2-2" /* break */, //
"1-3");
// pipeline reference
pipeline = getPipelineImplFromFactory("choose-ref");
PipelineInvocationHandle handle = pipeline.newInvocation();
handle.setAttribute("value", 1);
handle.invoke();
assertLog("1-1", /* choose *///
/* when value==1 */"2-1", //
/* when value==2 *///
/* otherwise *///
"1-3");
handle.setAttribute("value", 2);
handle.invoke();
assertLog("1-1", /* choose *///
/* when value==1 *///
/* when value==2 */"2-1", "2-2", //
/* otherwise *///
"1-3");
handle.setAttribute("value", 3);
handle.invoke();
assertLog("1-1", /* choose *///
/* when value==1 *///
/* when value==2 *///
/* otherwise */"2-1", "2-2", "2-3", //
"1-3");