{
for( Fields out : OUTS_PASS )
{
try
{
new Each( new Pipe( "test" ), arg, new TestFunction( func, new Tuple( "value" ) ), out );
fail( "failed on: " + arg.print() + " " + func.print() + " " + out.print() );
}
catch( Exception exception )
{
}
}
}
}
for( Fields arg : ARGS_PASS )
{
for( Fields func : FUNCS_FAIL )
{
for( Fields out : OUTS_PASS )
{
try
{
new Each( new Pipe( "test" ), arg, new TestFunction( func, new Tuple( "value" ) ), out );
fail( "failed on: " + arg.print() + " " + func.print() + " " + out.print() );
}
catch( Exception exception )
{
}
}
}
}
for( Fields arg : ARGS_PASS )
{
for( Fields func : FUNCS_PASS )
{
for( Fields out : OUTS_FAIL )
{
try
{
new Each( new Pipe( "test" ), arg, new TestFunction( func, new Tuple( "value" ) ), out );
fail( "failed on: " + arg.print() + " " + func.print() + " " + out.print() );
}
catch( Exception exception )
{
}