[squeak-dev] The Trunk: SUnit-tpr.111.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Nov 19 23:34:18 UTC 2017


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!



More information about the Squeak-dev mailing list