return new TupleEntry( Fields.size( tuple.size() ), tuple );
}
private void assertFail( GroupAssertion assertion, TupleEntry groupEntry, TupleEntry... values )
{
ConcreteCall operationCall = new ConcreteCall();
operationCall.setGroup( groupEntry );
assertion.prepare( FlowProcess.NULL, operationCall );
assertion.start( FlowProcess.NULL, operationCall );
for( TupleEntry value : values )
{
operationCall.setArguments( value );
assertion.aggregate( FlowProcess.NULL, operationCall );
}
try
{
operationCall.setArguments( null );
assertion.doAssert( FlowProcess.NULL, operationCall );
fail();
}
catch( AssertionException exception )
{