Marcel Taeumel uploaded a new version of SUnitGUI to project The Trunk:
http://source.squeak.org/trunk/SUnitGUI-mt.70.mcz==================== Summary ====================
Name: SUnitGUI-mt.70
Author: mt
Time: 12 July 2019, 10:04:59.772568 am
UUID: e8e5586c-52c1-f040-baab-80b15b269ccf
Ancestors: SUnitGUI-tpr.69
Refactoring of #literalsDo: - Step 3 of 3.
For more information, see
http://forum.world.st/Please-Review-Refactoring-for-literalsDo-etc-tp5099756p5100896.html.
=============== Diff against SUnitGUI-tpr.69 ===============
Item was changed:
----- Method: TestRunner>>addMethodsUnderTestIn:to: (in category 'actions') -----
addMethodsUnderTestIn: packages to: methods
packages
do: [:package | package isNil
ifFalse: [package methods
do: [:method | ((#(#packageNamesUnderTest #classNamesNotUnderTest ) includes: method methodSymbol)
or: [method compiledMethod isAbstract
+ or: [method compiledMethod hasLiteral: #ignoreForCoverage]])
- or: [method compiledMethod refersToLiteral: #ignoreForCoverage]])
ifFalse: [methods add: method]]]]!