[Pkg] The Trunk: SUnit-bf.101.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 8 01:04:44 UTC 2014


Bert Freudenberg uploaded a new version of SUnit to project The Trunk:
http://source.squeak.org/trunk/SUnit-bf.101.mcz

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

Name: SUnit-bf.101
Author: bf
Time: 8 December 2014, 2:04:30.045 am
UUID: d3caaa64-523b-482d-8297-097530a99a0c
Ancestors: SUnit-fbs.100

Restore timestamps lost in assignment conversion.

=============== Diff against SUnit-fbs.100 ===============

Item was changed:
  ----- Method: TestCase class>>addTestsFor:toSuite: (in category 'building suites') -----
  addTestsFor: classNameString toSuite: suite
  
  	| cls  |
  	cls := Smalltalk at: classNameString ifAbsent: [ ^suite ].
  	^cls isAbstract 
  		ifTrue:  [
  			cls allSubclasses do: [ :each |
  				each isAbstract ifFalse: [
  					each addToSuiteFromSelectors: suite ] ].
  			suite]
  		ifFalse: [ cls addToSuiteFromSelectors: suite ]
  !

Item was changed:
  ----- Method: TestCase class>>debug: (in category 'instance creation') -----
  debug: aSymbol
  
  	^(self selector: aSymbol) debug
  			!

Item was changed:
  ----- Method: TestCase class>>run: (in category 'instance creation') -----
  run: aSymbol
  
  	^(self selector: aSymbol) run
  			!

Item was changed:
  ----- Method: TestResult>>errorCount (in category 'accessing') -----
  errorCount
  
  	^self errors size
  			!

Item was changed:
  ----- Method: TestResult>>failureCount (in category 'accessing') -----
  failureCount
  
  	^self failures size
  			!



More information about the Packages mailing list