The Trunk: SUnit-ul.107.mcz

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

The Trunk: SUnit-ul.107.mcz

commits-2
Levente Uzonyi uploaded a new version of SUnit to project The Trunk:
http://source.squeak.org/trunk/SUnit-ul.107.mcz

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

Name: SUnit-ul.107
Author: ul
Time: 13 March 2017, 2:55:26.540222 pm
UUID: d69cb44c-c968-40f7-be91-5161ec51c5a6
Ancestors: SUnit-jr.106

SortedCollection Whack-a-mole

=============== Diff against SUnit-jr.106 ===============

Item was changed:
  ----- Method: ClassTestCase>>selectorsTested (in category 'Coverage') -----
  selectorsTested
  | literals |
  literals := Set new.
  self class
  selectorsAndMethodsDo: [ :s :m | (s beginsWith: 'test')
  ifTrue: [ literals addAll: (m messages)] ].
+ ^ literals sorted!
- ^ literals asSortedArray!