The Trunk: CollectionsTests-ul.109.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-ul.109.mcz

commits-2
Andreas Raab uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-ul.109.mcz

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

Name: CollectionsTests-ul.109
Author: ul
Time: 11 November 2009, 8:22:30 am
UUID: de56ede9-6a6c-c041-bf10-4795a63fe7c0
Ancestors: CollectionsTests-nice.108

- updated ArrayTest >> #testPrinting to the current printing schema

=============== Diff against CollectionsTests-nice.108 ===============

Item was changed:
  ----- Method: ArrayTest>>testPrinting (in category 'testing') -----
  testPrinting
  self assert: literalArray printString = '#(1 true 3 #four)'.
  self assert: (literalArray = (Compiler evaluate: literalArray printString)).
  self assert: selfEvaluatingArray printString =  '{1 . true . (3/4) . Color black . (2 to: 4) . 5}'.
  self assert: (selfEvaluatingArray = (Compiler evaluate: selfEvaluatingArray printString)).
+ self assert: nonSEArray1 printString =  '{1 . a Set(1)}'.
+ self assert: nonSEarray2 printString =  '{#Array}'
- self assert: nonSEArray1 printString =  'an Array(1 a Set(1))'.
- self assert: nonSEarray2 printString =  'an Array(#Array)'
  !