[squeak-dev] The Trunk: CollectionsTests-fbs.197.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Feb 12 09:35:41 UTC 2013


Frank Shearar uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-fbs.197.mcz

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

Name: CollectionsTests-fbs.197
Author: fbs
Time: 12 February 2013, 9:34:55.696 am
UUID: b13d3623-a130-40ae-974d-deb3c29ec909
Ancestors: CollectionsTests-cmm.196

Missing tests for String >> #asCamelCase.

http://bugs.squeak.org/view.php?id=7725

=============== Diff against CollectionsTests-cmm.196 ===============

Item was added:
+ ----- Method: StringTest>>testAsCamelCase (in category 'tests - converting') -----
+ testAsCamelCase
+ 	self assert: 'CamelCase' equals: 'camel case' asCamelCase.
+ 	self assert: 'CamelCase' equals: 'Camel Case' asCamelCase.
+ 	self assert: 'CamelCase' equals: 'CamelCase' asCamelCase.
+ 	self assert: 'CamelCase' equals: 'camelCase' asCamelCase.
+ 	self assert:  'AMan,APlan,ACanal,Panama' equals: 'A man, a plan, a canal, panama' asCamelCase.
+ 	self assert:  'Here123should%Be6TheName6OfTheMethod' equals: 'Here 123should % be 6 the name6 of the method' asCamelCase.!



More information about the Squeak-dev mailing list