testCase.addTest( test );
}
@SuppressWarnings("unchecked")
public void createStep( CommonTree ctx, List<CommonTree> params ) {
step = new DslStep( ctx.getLine(), ctx.getText() );
for( CommonTree param : params ) {
String[] cmds = new String[param.getChildCount()];
int i = 0;
for( CommonTree child : (List<CommonTree>) param.getChildren() ) {
cmds[ i++ ] = child.getText();