[Pkg] The Trunk: KernelTests-eem.224.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 27 22:16:50 UTC 2012


Eliot Miranda uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-eem.224.mcz

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

Name: KernelTests-eem.224
Author: eem
Time: 27 May 2012, 3:16:16.618 pm
UUID: 2d674fd0-22e3-4b5c-82ae-af5642c9614f
Ancestors: KernelTests-nice.223

Add a long test case for CompiledMethod = & hash

=============== Diff against KernelTests-nice.223 ===============

Item was added:
+ LongTestCase subclass: #CompiledMethodComparisonTest
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'KernelTests-Methods'!

Item was added:
+ ----- Method: CompiledMethodComparisonTest>>testHash (in category 'tests') -----
+ testHash
+ 	| ai |
+ 	ai := CompiledMethod allInstances.
+ 	ai do:
+ 		[:a|
+ 		ai do:
+ 			[:b|
+ 			a = b ifTrue: [self assert: a hash = b hash]]]!



More information about the Packages mailing list