The Trunk: Tests-mt.426.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tests-mt.426.mcz

commits-2
Marcel Taeumel uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-mt.426.mcz

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

Name: Tests-mt.426
Author: mt
Time: 26 February 2020, 5:20:28.209527 pm
UUID: 8b145b0f-2fe4-854b-a700-1818cdcf4084
Ancestors: Tests-mt.425

Prepare 5.3rc2 --- Makes the test for undeclared symbols more robust and now passing.

=============== Diff against Tests-mt.425 ===============

Item was changed:
  ----- Method: ReleaseTest>>testUndeclared (in category 'tests') -----
  testUndeclared
 
+ | undeclaredSymbols |
  Smalltalk cleanOutUndeclared.
  self
+ assert: (undeclaredSymbols := Undeclared keys) isEmpty
- assert: Undeclared isEmpty
  description: ('{1} {2} in Undeclared'
  format: {
+ undeclaredSymbols asCommaStringAnd.
+ undeclaredSymbols size = 1
- Undeclared keys asCommaStringAnd.
- Undeclared keys size = 1
  ifTrue: [ 'is' ]
  ifFalse: [ 'are' ] })!