[squeak-dev] The Trunk: Tests-spd.80.mcz

commits at source.squeak.org commits at source.squeak.org
Thu May 20 06:10:55 UTC 2010


Andreas Raab uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-spd.80.mcz

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

Name: Tests-spd.80
Author: spd
Time: 19 May 2010, 4:01:50.465 pm
UUID: 0eb7c6ee-258f-44aa-8bde-048c00b45da8
Ancestors: Tests-ar.79

* added tests to SystemOrganizer

=============== Diff against Tests-ar.79 ===============

Item was added:
+ ----- Method: SystemOrganizerTest>>testAccessGlobalDirectly (in category 'tests') -----
+ testAccessGlobalDirectly
+ 	"
+ 	SystemOrganizerTest run: #testAccessGlobalDirectly
+ 	"
+ 	
+ 	self assert: (SystemOrganization isKindOf: SystemOrganizer).	
+ 			
+ 	"It really lives in Smalltalk (another global)"
+ 	self assert: ((Smalltalk at: #SystemOrganization) == SystemOrganization).!

Item was added:
+ TestCase subclass: #SystemOrganizerTest
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Tests-System-Support'!

Item was added:
+ ----- Method: SystemOrganizerTest>>testAccessGlobalThroughClass (in category 'tests') -----
+ testAccessGlobalThroughClass
+ 	"
+ 	SystemOrganizerTest run: #testAccessGlobalThroughClass
+ 	"
+ 		
+ 	"In case someone stumbles upon the SystemOrganizer class, and does not know
+ 	about the SystemNavigation global, it can be accessed from there, too."
+ 	self assert: (SystemOrganizer default == SystemOrganization).
+ !




More information about the Squeak-dev mailing list