[squeak-dev] The Trunk: KernelTests-mt.412.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Dec 1 15:29:18 UTC 2021


Marcel Taeumel uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-mt.412.mcz

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

Name: KernelTests-mt.412
Author: mt
Time: 1 December 2021, 4:29:17.264194 pm
UUID: a0b2cfc2-83af-e740-bd69-4c39d802eb39
Ancestors: KernelTests-pre.411, KernelTests-ct.408

Complements Kernel-mt.1432

=============== Diff against KernelTests-pre.411 ===============

Item was added:
+ ----- Method: SqNumberParserTest>>testBases (in category 'tests - fail') -----
+ testBases
+ 
+ 	self assert: (SqNumberParser parse: '16r20') equals: 32.
+ 	self assert: (SqNumberParser parse: '2r10') equals: 2.
+ 	self assert: ((SqNumberParser on: '10')
+ 		nextIntegerBase: 2) equals: 2.
+ 	self assert: ((SqNumberParser on: '10')
+ 		defaultBase: 2;
+ 		nextNumber) equals: 2.
+ 	self assert: ((SqNumberParser on: '1000r10')
+ 		defaultBase: 2;
+ 		nextNumber) equals: 8.!



More information about the Squeak-dev mailing list