[squeak-dev] The Trunk: KernelTests-nice.260.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Feb 27 22:08:59 UTC 2014


Nicolas Cellier uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-nice.260.mcz

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

Name: KernelTests-nice.260
Author: nice
Time: 27 February 2014, 11:08:19.986 pm
UUID: 3f70ebae-3719-42d7-a189-43ce16a8e543
Ancestors: KernelTests-nice.259

Assert that uppercase exponents are allowed in ExtendedNumberParserTest ('1.00E-2' asNumber)

=============== Diff against KernelTests-nice.259 ===============

Item was added:
+ ----- Method: ExtendedNumberParserTest>>testUppercaseExponent (in category 'testing') -----
+ testUppercaseExponent
+ 	"An uppercase exponent is allowed"
+ 	
+ 	self assert: 0.01 equals: (ExtendedNumberParser parse: '1.00E-2').
+ 	self assert: 305.0 equals: (ExtendedNumberParser parse: '3.05D+2').!



More information about the Squeak-dev mailing list