[squeak-dev] The Trunk: 60Deprecated-ct.102.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jan 10 18:00:20 UTC 2022


Christoph Thiede uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-ct.102.mcz

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

Name: 60Deprecated-ct.102
Author: ct
Time: 10 January 2022, 7:00:18.397518 pm
UUID: b8b23c62-95ac-7749-87bb-aaebee832983
Ancestors: 60Deprecated-mt.101

Complements SUnit-ct.134 (SUnit-ct.133).

=============== Diff against 60Deprecated-mt.101 ===============

Item was added:
+ ----- Method: TestCase>>openDebuggerOnFailingTestMethod (in category '*60Deprecated-running') -----
+ openDebuggerOnFailingTestMethod
+ 
+ 	self deprecated: 'ct: Use #debugAsFailure'.
+ 	
+ 	"SUnit has halted one step in front of the failing test method. Step over the 'self halt' and 
+ 	 send into 'self perform: testSelector' to see the failure from the beginning"
+ 	self
+ 		halt;
+ 		performTest!

Item was added:
+ ----- Method: TestCase>>runCaseAsFailure: (in category '*60Deprecated-running') -----
+ runCaseAsFailure: aSemaphore
+ 
+ 	self deprecated: 'ct: Use #runCaseWithoutTimeout and #ensure:'.
+ 	^ [self runCaseWithoutTimeout]
+ 		ensure: [aSemaphore signal]!



More information about the Squeak-dev mailing list