[squeak-dev] The Trunk: ToolsTests-fbs.59.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jan 3 22:51:14 UTC 2013


Frank Shearar uploaded a new version of ToolsTests to project The Trunk:
http://source.squeak.org/trunk/ToolsTests-fbs.59.mcz

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

Name: ToolsTests-fbs.59
Author: fbs
Time: 3 January 2013, 10:50:59.624 pm
UUID: 32567995-41b6-47f6-ae87-100fe404b758
Ancestors: ToolsTests-fbs.58

More characterisation tests. Note that #testClassCommentAnnotation is 'forward looking', in that it defines the soon-to-be behaviour of Browser >> #annotationForClassCommentFor:.

=============== Diff against ToolsTests-fbs.58 ===============

Item was added:
+ ----- Method: BrowserTest>>testClassCommentAnnotation (in category 'as yet unclassified') -----
+ testClassCommentAnnotation
+ 	browser selectSystemCategory: browser class category.
+ 	browser selectClass: browser class.
+ 	self assert: 'class comment for Browser - cwp 12/27/2012 11:09' equals: (browser annotationForClassCommentFor: browser class).
+ 	"And the method ignores the parameter:"
+ 	self assert: 'class comment for Browser - cwp 12/27/2012 11:09' equals: (browser annotationForClassCommentFor: browser class superclass).!

Item was added:
+ ----- Method: BrowserTest>>testClassDefinitionAnnotation (in category 'as yet unclassified') -----
+ testClassDefinitionAnnotation
+ 	browser selectSystemCategory: browser class category.
+ 	browser selectClass: browser class.
+ 	self assert: browser class comment equals: (browser annotationForClassDefinitionFor: browser class).
+ 	"And the method ignores the parameter:"
+ 	self assert: browser class comment equals: (browser annotationForClassDefinitionFor: browser class superclass).!



More information about the Squeak-dev mailing list