[Pkg] The Trunk: CollectionsTests-ar.145.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Feb 23 15:45:44 UTC 2010


Andreas Raab uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-ar.145.mcz

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

Name: CollectionsTests-ar.145
Author: ar
Time: 23 February 2010, 7:35:03.011 am
UUID: adab5884-b1b0-7b41-b25c-fbd8ae3b29ae
Ancestors: CollectionsTests-ar.144

Tests for ByteArray hex conversions.

=============== Diff against CollectionsTests-ar.144 ===============

Item was added:
+ ----- Method: ByteArrayTest>>testHex (in category 'hex tests') -----
+ testHex
+ 	self assert: #[122 43 213 7] hex = '7a2bd507'.
+ 	self assert: (UUID fromString: '97c1f2dd-f920-9948-b329-319a30c16386') hex
+ 					= '97c1f2ddf9209948b329319a30c16386'.!

Item was added:
+ ClassTestCase subclass: #ByteArrayTest
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'CollectionsTests-Arrayed'!

Item was added:
+ ----- Method: ByteArrayTest>>testReadHexFrom (in category 'hex tests') -----
+ testReadHexFrom
+ 	self assert: (ByteArray readHexFrom: '7a2bd507') = #[122 43 213 7].
+ 	self assert: (UUID readHexFrom: '97c1f2ddf9209948b329319a30c16386')
+ 					= (UUID fromString: '97c1f2dd-f920-9948-b329-319a30c16386').!



More information about the Packages mailing list