debug(tab, item);
}
public void testViewNonMembers() throws APIException {
final CmdRunner runner = apiHelper.getSession().createCmdRunner();
// Response response = apiHelper.getSICommands().getSandboxInfo(sandbox.substring(0, sandbox.lastIndexOf('\\')));
/*
final CmdRunner runner = session.createCmdRunner();
*/
Command command = new Command(Command.SI);
command.setCommandName("viewnonmembers");
command.addOption(new Option("cwd", sandbox.substring(0, sandbox.lastIndexOf('\\'))));
command.addOption(new Option("recurse"));
command.addOption(new Option( "noincludeFormers" ));
/*
command.addOption(
new Option("fields", "locker,workingrev,workingcpid,deferred,type,name,memberrev,locksandbox"));
*/
System.err.println(command.toString());
final Response response;
final Set<String> types = new HashSet<String>();
final Set<String> modeltypes = new HashSet<String>();
try {
response = runner.execute(command);
final SubRoutineIterator routineIterator = response.getSubRoutines();
while (routineIterator.hasNext()) {
final SubRoutine subRoutine = routineIterator.next();
System.err.println("routine " + subRoutine);
}