[squeak-dev] The Trunk: CollectionsTests-topa.185.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 27 07:18:35 UTC 2011


Levente Uzonyi uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-topa.185.mcz

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

Name: CollectionsTests-topa.185
Author: topa
Time: 23 May 2011, 1:50:29.396 pm
UUID: 8e536e32-1fb9-4bdd-8d4b-3088b46e41a9
Ancestors: CollectionsTests-nice.184

Mall testcase for RWBinaryOrTextStream on exisiting 
collections.

=============== Diff against CollectionsTests-nice.184 ===============

Item was added:
+ ----- Method: RWBinaryOrTextStreamTest>>testExisiting (in category 'tests') -----
+ testExisiting
+ 
+ 	| string stream |
+ 	
+ 	string := 'hello'.
+ 	
+ 	stream := RWBinaryOrTextStream on: string.
+ 	self assert: stream contents = string.
+ 
+ 	stream := RWBinaryOrTextStream on: string.
+ 	stream setToEnd.
+ 	self assert: stream position = string size.
+ !




More information about the Squeak-dev mailing list