The Trunk: CollectionsTests-topa.252.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-topa.252.mcz

commits-2
Tobias Pape uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-topa.252.mcz

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

Name: CollectionsTests-topa.252
Author: topa
Time: 8 October 2015, 8:27:42.482 pm
UUID: ee8b552d-d0f2-4d95-898f-e74dc84aab3f
Ancestors: CollectionsTests-eem.251

oldBack is deprecated, remove tests

=============== Diff against CollectionsTests-eem.251 ===============

Item was removed:
- ----- Method: ReadStreamTest>>testOldBack (in category 'tests - back') -----
- testOldBack
- "Test the old behavior of the method back. The method #oldBack is a misconception about what a stream is. A stream contains a pointer *between* elements with past and future elements. The method #oldBack considers that the pointer is *on* an element. (Damien Cassou - 1 August 2007)"
- |stream|
- stream := self streamOn: 'abc'.
- stream next: 2.
- self assert: stream oldBack = $a.!

Item was removed:
- ----- Method: ReadStreamTest>>testOldBackOnPosition1 (in category 'tests - back') -----
- testOldBackOnPosition1
- "Test the old behavior of the method back. The method #oldBack is a misconception about what a stream is. A stream contains a pointer *between* elements with past and future elements. The method #oldBack considers that the pointer is *on* an element. (Damien Cassou - 1 August 2007)"
- |stream|
- stream := self streamOn: 'abc'.
- stream next.
- self assert: stream oldBack = nil.!