reports/Builder__TestReport.st
changeset 249 50d2712af1a9
parent 247 7387f32855da
child 250 4392c84aaf1c
equal deleted inserted replaced
248:82f1ff8c96a6 249:50d2712af1a9
   338 !
   338 !
   339 
   339 
   340 addSkipped: testcase
   340 addSkipped: testcase
   341 
   341 
   342     outcome := self createOutcome.
   342     outcome := self createOutcome.
   343     outcome collectedOutput: collector contents. 
       
   344     outcome testCase: testcase.        
   343     outcome testCase: testcase.        
   345     outcome result: TestResult stateSkip.
   344     outcome result: TestResult stateSkip.
   346     format writeTestCase: testcase outcome: outcome time: time exception: nil.
   345     format writeTestCase: testcase outcome: outcome time: time exception: nil.
   347     Transcript show:'...SKIPPED'.
   346     Transcript show:'...SKIPPED'.
   348     nskipped := nskipped + 1.
   347     nskipped := nskipped + 1.
   349 
   348 
   350     "Created: / 21-11-2012 / 15:35:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   349     "Created: / 21-11-2012 / 15:35:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   351     "Modified: / 16-09-2014 / 15:24:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   350     "Modified: / 16-09-2014 / 19:47:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   352 ! !
   351 ! !
   353 
   352 
   354 !TestReport::Result methodsFor:'initialization'!
   353 !TestReport::Result methodsFor:'initialization'!
   355 
   354 
   356 initialize
   355 initialize