* {@link AbstractDebugTargetWithTransmission}
*/
public void testVersion() throws Exception {
final Boolean passed[] = new Boolean[1];
pydevConsoleCommunication.postCommand(new VersionCommand(debugTarget) {
@Override
public void processOKResponse(int cmdCode, String payload) {
if (cmdCode == AbstractDebuggerCommand.CMD_VERSION && "1.1".equals(payload))
passed[0] = true;
else