[squeak-dev] The Trunk: CollectionsTests-tonyg.366.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Dec 23 20:22:40 UTC 2021


Tony Garnock-Jones uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-tonyg.366.mcz

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

Name: CollectionsTests-tonyg.366
Author: tonyg
Time: 23 December 2021, 3:22:38.342722 pm
UUID: 4eef685e-3eb6-4c80-ab94-9f20b31eef85
Ancestors: CollectionsTests-tonyg.365

New test: it should be possible to access rows of a matrix with no columns and columns of a matrix with no rows.

=============== Diff against CollectionsTests-tonyg.365 ===============

Item was added:
+ ----- Method: MatrixTest>>testZeroDimensions (in category 'tests - accessing') -----
+ testZeroDimensions
+ 	self assert: #() equals: ((Matrix rows: 2 columns: 0 element: 9) atRow: 1).
+ 	self assert: #() equals: ((Matrix rows: 0 columns: 2 element: 9) atColumn: 1).
+ !



More information about the Squeak-dev mailing list