The Trunk: CollectionsTests-mt.329.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.329.mcz

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

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

Name: CollectionsTests-mt.329
Author: mt
Time: 4 December 2019, 4:54:53.803613 pm
UUID: 411ab84e-e7e1-4d01-b711-9e1c5aadaef2
Ancestors: CollectionsTests-mt.328

Documents some quirks in RunArray item access. Fails at the moment ...

=============== Diff against CollectionsTests-mt.328 ===============

Item was added:
+ ----- Method: RunArrayTest>>testAt2 (in category 'tests - accessing') -----
+ testAt2
+ "self debug: #testAt2"
+ | array |
+ array := RunArray new: 5 withAll: 2.
+
+ self should: [array at: 0] raise: Error.
+ self should: [array at: 6] raise: Error.
+ self should: [array at: $b] raise: Error.!