The Trunk: CollectionsTests-mt.226.mcz

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

The Trunk: CollectionsTests-mt.226.mcz

commits-2
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).!