I have a dunit test project and I am trying to run it in console mode. When I execute the project it runs twice (it opens only one console window and I see it executing twice the tests) and it is also taking much more time to execute than when I run it in GUI mode. Does anyone know how to run a dunit console test only once?

DPR source code:

var  
  R: TTestResult;  

begin  
  Application.Initialize;  
  if IsConsole then begin  
    with TextTestRunner.RunRegisteredTests(rxbHaltOnFailures) do begin  
      R := TextTestRunner.RunRegisteredTests;  
      ExitCode := R.ErrorCount + R.FailureCount;  
      Free;  
    end  
  end  
  else begin  
    GUITestRunner.RunRegisteredTests;  
  end;  
end.
link|improve this question

1  
Post your DPR code. I suspect you have problem in that code. – Robert Love Feb 9 '11 at 19:35
@robert Its done. – Rafael Colucci Feb 9 '11 at 19:48
feedback

1 Answer

up vote 8 down vote accepted

Your calling TextTestRunner.RunRegisteredTests twice which is causing your tests to execute twice.

Reduce it to once call and you will be fine.

link|improve this answer
Dammit!!! I did not see it! How could I???? – Rafael Colucci Feb 9 '11 at 19:50
1  
@Rafael: because of the with – Jeroen Wiert Pluimers Feb 10 '11 at 8:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.