[squeak-dev] The Trunk: WebClient-Tests-ul.54.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Feb 5 22:40:17 UTC 2018


Levente Uzonyi uploaded a new version of WebClient-Tests to project The Trunk:
http://source.squeak.org/trunk/WebClient-Tests-ul.54.mcz

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

Name: WebClient-Tests-ul.54
Author: ul
Time: 5 February 2018, 11:38:52.347433 pm
UUID: 315f0060-94ed-44aa-b06a-804b499339a3
Ancestors: WebClient-Tests-topa.53

- added tests for md5

=============== Diff against WebClient-Tests-topa.53 ===============

Item was added:
+ ----- Method: WebClientServerTest>>testMD5Digest (in category 'tests - misc') -----
+ testMD5Digest
+ 
+ 	#(
+ 		'The quick brown fox jumps over the lazy dog' '9e107d9d372bb6826bd81d3542a419d6'
+ 		'The quick brown fox jumps over the lazy dog.' 'e4d909c290d0fb1ca068ffaddf22cbd0'
+ 		'' 'd41d8cd98f00b204e9800998ecf8427e'
+ 	) pairsDo: [ :string :expectedHash |
+ 		self assert: expectedHash equals: (WebUtils md5Digest: string) ]!



More information about the Squeak-dev mailing list