Flow first = firstFlow( path );
Flow second = secondFlow( first.getSink(), path );
Flow third = thirdFlow( second.getSink(), path );
Flow fourth = fourthFlow( third.getSink(), path );
ProcessChain chain = new ProcessChain( true, fourth, second, first, third );
chain.start();
chain.complete();
validateLength( fourth, 20 );
}