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

commits at source.squeak.org commits at source.squeak.org
Wed Dec 4 15:54:54 UTC 2019


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.!



More information about the Squeak-dev mailing list