[squeak-dev] The Inbox: ToolsTests-fbs.44.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 13 21:42:50 UTC 2011


A new version of ToolsTests was added to project The Inbox:
http://source.squeak.org/inbox/ToolsTests-fbs.44.mcz

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

Name: ToolsTests-fbs.44
Author: fbs
Time: 13 May 2011, 10:42:43.121 pm
UUID: 38aab1aa-dadd-2b4d-b055-5a049109ec4d
Ancestors: ToolsTests-fbs.42

If you're looking at a method #foo, and you don't have a message category selected, and you move classes to something that also has a #foo, keep #foo selected.

=============== Diff against ToolsTests-fbs.42 ===============

Item was added:
+ ----- Method: BrowserTest>>testKeepMethodSelectedWhenChangingClass (in category 'testing - message list') -----
+ testKeepMethodSelectedWhenChangingClass
+ 	browser selectSystemCategory: SequenceableCollection category.
+ 	browser selectClass: SequenceableCollection.
+ 	browser selectMessageNamed: #add:.
+ 	self assert: browser selectedMessageName = #add:.
+ 	
+ 	"Even though we have no message category selected, stay looking at the #add: method."
+ 	browser selectClass: Collection.
+ 	self assert: browser selectedMessageName = #add:.!




More information about the Squeak-dev mailing list