'From Squeak3.7alpha of 11 September 2003 [latest update: #5763] on 8 March 2004 at 4:41:16 pm'! "Change Set: AssociationHashTest Date: 8 March 2004 Author: Marcus Denker This is just associationEqualTest-brp.1.cs with a change to the class name: The methods are added to the existing AssociationTest. This just refactors the Equality test and adds a test for #hash"! TestCase subclass: #AssociationTest instanceVariableNames: 'b a ' classVariableNames: '' poolDictionaries: '' category: 'Collections-Support-Tests'! !AssociationTest methodsFor: 'setup' stamp: 'md 3/8/2004 16:37'! setUp a _ 1 -> 'one'. b _ 1 -> 'een'.! ! !AssociationTest methodsFor: 'testing' stamp: 'md 3/8/2004 16:37'! testEquality self assert: (a key = b key); deny: (a value = b value); deny: (a = b) ! ! !AssociationTest methodsFor: 'testing' stamp: 'md 3/8/2004 16:38'! testHash self assert: (a hash = a copy hash); deny: (a hash = b hash)! ! TestCase subclass: #AssociationTest instanceVariableNames: 'a b' classVariableNames: '' poolDictionaries: '' category: 'Collections-Support-Tests'!