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

commits-2
Levente Uzonyi uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-ul.193.mcz

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

Name: CollectionsTests-ul.193
Author: ul
Time: 17 September 2012, 3:52:11.327 am
UUID: 0610f05a-a1d2-474b-b03f-6a5955a6967a
Ancestors: CollectionsTests-ul.192

Fixed the typo in the name of RWBinaryOrTextStreamTest >> #testExisting.

=============== Diff against CollectionsTests-ul.192 ===============

Item was removed:
- ----- 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.
- !

Item was added:
+ ----- Method: RWBinaryOrTextStreamTest>>testExisting (in category 'tests') -----
+ testExisting
+
+ | 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.
+ !