[squeak-dev] The Trunk: KernelTests-ct.419.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jan 31 19:40:23 UTC 2022


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

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

Name: KernelTests-ct.419
Author: ct
Time: 31 January 2022, 8:40:22.220214 pm
UUID: 9b3e7455-e83b-764c-86b1-943931b15e33
Ancestors: KernelTests-ct.418

Complements SUnit-ct.130 (deprecation of TestResult error) and SUnit-ct.138 (new convenience #shouldRaiseError:).

=============== Diff against KernelTests-ct.418 ===============

Item was changed:
  ----- Method: BooleanTest>>testBooleanNew (in category 'tests') -----
  testBooleanNew
  
+ 	self shouldRaiseError: [Boolean new].
+ 	self shouldRaiseError: [True new].
+ 	self shouldRaiseError: [False new].!
- 	self should: [Boolean new] raise: TestResult error. 
- 	self should: [True new] raise: TestResult error. 
- 	self should: [False new] raise: TestResult error. !

Item was changed:
  ----- Method: BooleanTest>>testNew (in category 'tests') -----
  testNew
  
+ 	self shouldRaiseError: [Boolean new].!
- 	self should: [Boolean new] raise: TestResult error. !

Item was changed:
  ----- Method: FalseTest>>testNew (in category 'tests') -----
  testNew
  
+ 	self shouldRaiseError: [False new].!
- 	self should: [False new] raise: TestResult error. !

Item was changed:
  ----- Method: IntegerTest>>testNew (in category 'tests - instance creation') -----
  testNew
+ 	self shouldRaiseError: [Integer new].!
- 	self should: [Integer new] raise: TestResult error. !

Item was changed:
  ----- Method: SmallIntegerTest>>testBasicNew (in category 'tests - Class Methods') -----
  testBasicNew
  
+ 	self shouldRaiseError: [SmallInteger basicNew].!
- 	self should: [SmallInteger basicNew] raise: TestResult error. !

Item was changed:
  ----- Method: SmallIntegerTest>>testNew (in category 'tests - Class Methods') -----
  testNew
  
+ 	self shouldRaiseError: [SmallInteger new].!
- 	self should: [SmallInteger new] raise: TestResult error. !



More information about the Squeak-dev mailing list