[squeak-dev] The Trunk: Tests-dtl.396.mcz

commits at source.squeak.org commits at source.squeak.org
Mon May 14 01:25:27 UTC 2018


David T. Lewis uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-dtl.396.mcz

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

Name: Tests-dtl.396
Author: dtl
Time: 13 May 2018, 9:25:11.98605 pm
UUID: 5caece86-0310-4cd3-8e10-9e80d1d28c49
Ancestors: Tests-dtl.395

Revert last update, which was based on bad assumptions about how a proxy should behave (thanks Levente).
If a proxy doesn't want to forward a message, it can just implement the method. If you want direct access to the proxy object, you can use the mirror primitives.

=============== Diff against Tests-dtl.395 ===============

Item was removed:
- MCTestCase subclass: #MCPackageInEnvironmentTest
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'Tests-Monticello'!

Item was removed:
- ----- Method: MCPackageInEnvironmentTest>>testPerformIdentityEquals (in category 'testing') -----
- testPerformIdentityEquals
- 	"Verify that #perform:with: can be used to send #== for identity test. Required
- 	for identity test in PluggableDictionary. Delegation to the MCPackage does not
- 	work in that case because the package is a different object."
- 
- 	| aProtoObj |
- 	aProtoObj :=MCPackageInEnvironment
- 					decorating: (MCPackage new name: 'No Name Yet')
- 					in: Environment default.
- 	self assert: [aProtoObj == aProtoObj]
- 		description: 'Direct test for identity does not invoke delegation'.
- 
- 	"Normal perform:with: delegation with any selector other than #=="
- 	aProtoObj perform: #name: with: #FOO.
- 	self assert: #FOO equals: aProtoObj name
- 		description: 'name of the MCPackage should have been set to #FOO'. 
- 
- 	"Selector #== must refer to aProtoObj, not to the MCPackage to which it delegates"
- 	self assert: [aProtoObj perform: #== with: aProtoObj]
- 		description: 'If aProtoObj delegates to the MCPackage the identity test will fail'.
- !



More information about the Squeak-dev mailing list