[squeak-dev] The Trunk: NetworkTests-topa.52.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Oct 14 12:18:52 UTC 2017


Tobias Pape uploaded a new version of NetworkTests to project The Trunk:
http://source.squeak.org/trunk/NetworkTests-topa.52.mcz

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

Name: NetworkTests-topa.52
Author: topa
Time: 14 October 2017, 2:21:13.557287 pm
UUID: 038bc9aa-571b-4509-8078-d0303f892d9f
Ancestors: NetworkTests-topa.51

Emulate more of SocketStream

=============== Diff against NetworkTests-topa.51 ===============

Item was added:
+ ----- Method: MockSocketStream>>cr (in category 'stream out') -----
+ cr
+ 	self nextPutAll: String cr!

Item was added:
+ ----- Method: MockSocketStream>>crlf (in category 'stream out') -----
+ crlf
+ 	self nextPutAll: String crlf!

Item was added:
+ ----- Method: MockSocketStream>>next:putAll:startingAt: (in category 'stream out') -----
+ next: n putAll: aCollection startingAt: startIndex
+ 
+ 	^ self outStream next: n putAll: aCollection startingAt: startIndex
+ !

Item was added:
+ ----- Method: MockSocketStream>>nextPut: (in category 'stream out') -----
+ nextPut: anObject
+ 
+ 	^ self outStream nextPut: anObject!

Item was added:
+ ----- Method: MockSocketStream>>nextPutAll: (in category 'stream out') -----
+ nextPutAll: aCollection 
+ 	^ self outStream nextPutAll: aCollection.!

Item was added:
+ ----- Method: MockSocketStream>>nextPutAllFlush: (in category 'stream out') -----
+ nextPutAllFlush: aCollection 
+ 	^ self outStream nextPutAll: aCollection.!

Item was added:
+ ----- Method: MockSocketStream>>space (in category 'stream out') -----
+ space
+ 	self nextPut: Character space!



More information about the Squeak-dev mailing list