}
public void testIt() {
ArrayList<VcsException> errors = new ArrayList<VcsException>();
MKSAPIHelper helper = new MKSAPIHelper();
helper.initComponent();
SandboxesCommandAPI command;
try {
command = createCommand(errors, helper);
command.execute();
} finally {
helper.disposeComponent();
}
for (SandboxInfo sandboxInfo : command.result) {
System.out.println(sandboxInfo);
}
}