[squeak-dev] The Inbox: SUnitTools-ct.9.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 20 11:45:26 UTC 2022


A new version of SUnitTools was added to project The Inbox:
http://source.squeak.org/inbox/SUnitTools-ct.9.mcz

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

Name: SUnitTools-ct.9
Author: ct
Time: 20 May 2022, 1:45:25.567299 pm
UUID: f68da5c3-1d47-044a-b9eb-45ddf84dba87
Ancestors: SUnitTools-ct.8

Proposal: In browsers, treat abstract classes as test classes indeed so that we can run all their (subclasses') tests indeed and navigate to the tested class (i.e., PrimCallControllerAbstract, NamePolicy, UserInputEvent) via the SUnit menu extensions.

=============== Diff against SUnitTools-ct.8 ===============

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



More information about the Squeak-dev mailing list