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

commits at source.squeak.org commits at source.squeak.org
Tue Nov 20 21:41:32 UTC 2018


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

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

Name: KernelTests-eem.353
Author: eem
Time: 20 November 2018, 1:41:04.77042 pm
UUID: 50504d29-30ef-4845-a6e5-34bf17226f9c
Ancestors: KernelTests-pre.352

Add tests for Message equality

=============== Diff against KernelTests-pre.352 ===============

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

Item was added:
+ ----- Method: MessageTest>>testMessageEquality (in category 'tests') -----
+ testMessageEquality
+ 
+ 	self assert: (Message selector: #= argument: 1) equals: (Message selector: #= argument: 1).
+ 	self assert: (Message selector: #= argument: 1) hash equals: (Message selector: #= argument: 1) hash.
+ 	self deny: (Message selector: #= argument: 1) equals: (Message selector: #= argument: 1.0)!



More information about the Packages mailing list