[squeak-dev] The Trunk: CollectionsTests-mt.226.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 14 10:52:43 UTC 2015


Marcel Taeumel uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-mt.226.mcz

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

Name: CollectionsTests-mt.226
Author: mt
Time: 14 January 2015, 11:52:35.587 am
UUID: 93b0d9a1-aa09-2d47-bd85-624298acbdbf
Ancestors: CollectionsTests-bf.225

Tests added for #concatenation

=============== Diff against CollectionsTests-bf.225 ===============

Item was added:
+ ----- Method: SequenceableCollectionTest>>testConcatenation (in category 'tests - converting') -----
+ testConcatenation
+ 
+ 	self assert: #( (1 2) (3 4) ) concatenation = #(1 2 3 4).
+ 	self assert: #( (1 2) ( (3 4) ) ) concatenation = #(1 2 (3 4)).
+ 	self should: [#(1 2 3 4) concatenation] raise: Error.
+ 
+ 	self assert: #() concatenation = #().
+ 	self assert: #( (1 2) () (3) ()) concatenation = #(1 2 3).!



More information about the Squeak-dev mailing list