Nicolas Cellier uploaded a new version of SUnit to project The Trunk:
http://source.squeak.org/trunk/SUnit-nice.74.mcz==================== Summary ====================
Name: SUnit-nice.74
Author: nice
Time: 26 February 2010, 12:29:38.344 am
UUID: 384ef567-21c0-3448-82c2-96693eab51da
Ancestors: SUnit-ul.73
Cuis 2.2 SUnitSpeedUp
=============== Diff against SUnit-ul.73 ===============
Item was changed:
+ ----- Method: TestCase class>>testSelectors (in category 'Accessing') -----
+ testSelectors
- ----- Method: TestCase class>>testSelectors (in category 'accessing') -----
- testSelectors
+ ^(self selectors asArray select: [ :each |
+ (each beginsWith: 'test') and: [ each numArgs isZero ] ]) sort!
- ^self selectors asSortedCollection asOrderedCollection select: [:each |
- ('test*' match: each) and: [each numArgs isZero]]
- !