The Inbox: CollectionsTests-hk.163.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: CollectionsTests-hk.163.mcz

commits-2
A new version of CollectionsTests was added to project The Inbox:
http://source.squeak.org/inbox/CollectionsTests-hk.163.mcz

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

Name: CollectionsTests-hk.163
Author: hk
Time: 20 May 2010, 9:05:50.212 am
UUID: f0bf52c0-eb6d-cb4d-ab02-ddcfd4b221fd
Ancestors: CollectionsTests-ar.162

Test for String>>isAllDigits

=============== Diff against CollectionsTests-ar.162 ===============

Item was added:
+ ----- Method: StringTest>>testIsAllDigits (in category 'testing - testing') -----
+ testIsAllDigits
+ "
+ self run: #testIsAllDigits
+ "
+ self assert: '' isAllDigits = false.
+ self assert: '1.23' isAllDigits = false.
+ self assert: '12 3' isAllDigits = false.
+ self assert: '-123' isAllDigits = false.
+ self assert: '0123456789' isAllDigits = true.!