[squeak-dev] The Trunk: SUnitGUI-laza.43.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[squeak-dev] The Trunk: SUnitGUI-laza.43.mcz

commits-2
Alexander Lazarević uploaded a new version of SUnitGUI to project The Trunk:
http://source.squeak.org/trunk/SUnitGUI-laza.43.mcz

==================== Summary ====================

Name: SUnitGUI-laza.43
Author: laza
Time: 7 September 2009, 3:49:29 am
UUID: 790bb637-960c-db46-b093-edc4ac3ab2c5
Ancestors: SUnitGUI-ar.42

Display status always in red if there are any errors in TestRunner

=============== Diff against SUnitGUI-ar.42 ===============

Item was changed:
  ----- Method: TestRunner>>statusColor (in category 'accessing-testing') -----
  statusColor
- result hasFailures
- ifTrue:[ ^ Color yellow ].
  result hasErrors
  ifTrue: [ ^ Color red ].
+ result hasFailures
+ ifTrue:[ ^ Color yellow ].
  ^ Color green!