[squeak-dev] The Inbox: CollectionsTests-ct.363.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Sep 7 11:41:12 UTC 2021


A new version of CollectionsTests was added to project The Inbox:
http://source.squeak.org/inbox/CollectionsTests-ct.363.mcz

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

Name: CollectionsTests-ct.363
Author: ct
Time: 7 September 2021, 1:41:11.075692 pm
UUID: 62110714-5c8b-8747-8b9d-b91fef737038
Ancestors: CollectionsTests-ct.361

Complements Collections-ct.957 (Collection >> #sortedSafely).

=============== Diff against CollectionsTests-ct.361 ===============

Item was added:
+ ----- Method: CollectionTest>>testSortedSafely (in category 'tests - sorting') -----
+ testSortedSafely
+ 
+ 	self assert: #(1 2 3 4 5) equals: #(5 4 1 3 2) sortedSafely.
+ 	self assert: #(five four one three two) equals: #(one two three four five) sortedSafely.
+ 	self assert:  {'bar'. 'foo'. self. false. -1.38. 42. true. nil} equals: {nil. 42. false. -1.38. true. self. 'foo'. 'bar'} sortedSafely.!



More information about the Squeak-dev mailing list