tim Rowledge uploaded a new version of SUnit to project The Trunk:
http://source.squeak.org/trunk/SUnit-tpr.111.mcz==================== Summary ====================
Name: SUnit-tpr.111
Author: tpr
Time: 19 November 2017, 3:34:08.562731 pm
UUID: baceabbf-0a9c-447c-9e41-e832bb103264
Ancestors: SUnit-tpr.110
Provide a clean way to reset the error and failures lists for retrying the problematic test. I hate usage of instVarAt*
=============== Diff against SUnit-tpr.110 ===============
Item was added:
+ ----- Method: TestResult>>resetErrors (in category 'initialization') -----
+ resetErrors
+ "clear the errors list ready to re-run those tests"
+
+ errors := OrderedCollection new!
Item was added:
+ ----- Method: TestResult>>resetFailures (in category 'initialization') -----
+ resetFailures
+ "clear the failures list ready to re-run those tests"
+
+ failures := Set new!