[squeak-dev] The Trunk: SUnitTools-topa.2.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Mar 30 09:20:51 UTC 2015


Tobias Pape uploaded a new version of SUnitTools to project The Trunk:
http://source.squeak.org/trunk/SUnitTools-topa.2.mcz

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

Name: SUnitTools-topa.2
Author: topa
Time: 30 March 2015, 11:20:45.675 am
UUID: 39c2ee8e-382f-4c49-b0a6-b9717d7ec5d2
Ancestors: SUnitTools-topa.1

Push up #hasClassWithTestsSelected to not upset, eg, ChangeSorter.

Reported by Karl Ramberg. Thanks.

=============== Diff against SUnitTools-topa.1 ===============

Item was removed:
- ----- Method: Browser>>hasClassWithTestsSelected (in category '*SUnitTools-class list functions') -----
- hasClassWithTestsSelected
- 
- 	^ (self selectedClass isTestClass and: [self selectedClass isAbstract not])!

Item was added:
+ ----- Method: StringHolder>>hasClassWithTestsSelected (in category '*SUnitTools-testing') -----
+ hasClassWithTestsSelected
+ 
+ 	^ self selectedClass
+ 		ifNil: [false]
+ 		ifNotNil: [:cls |
+ 			cls isTestClass and: [cls isAbstract not]]!



More information about the Squeak-dev mailing list