[squeak-dev] The Trunk: HelpSystem-Tests-ul.14.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 17 02:35:23 UTC 2011


Levente Uzonyi uploaded a new version of HelpSystem-Tests to project The Trunk:
http://source.squeak.org/trunk/HelpSystem-Tests-ul.14.mcz

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

Name: HelpSystem-Tests-ul.14
Author: ul
Time: 17 March 2011, 3:35:17.742 am
UUID: 1906fabb-4d06-204d-acac-e3d8048c1773
Ancestors: HelpSystem-Tests-tbn.13

- cache read only source files during some tests

=============== Diff against HelpSystem-Tests-tbn.13 ===============

Item was changed:
  ----- Method: ClassAPIHelpBuilderTest>>testDefaultBuilding (in category 'testing') -----
  testDefaultBuilding
  	|topic|
+ 	topic := CurrentReadOnlySourceFiles cacheDuring: [
+ 		ClassAPIHelpBuilder buildHelpTopicFrom: Integer ].
- 	topic := ClassAPIHelpBuilder 
- 				buildHelpTopicFrom: Integer.				 
  	self assert: topic subtopics size = 2.
  	self assert: topic subtopics first title = 'Instance side'.
  	self assert: topic subtopics last title = 'Class side'
   
  
   !

Item was changed:
  ----- Method: ClassAPIHelpBuilderTest>>testMethodsButNoSubclasses (in category 'testing') -----
  testMethodsButNoSubclasses
  	|topic|
+ 	topic := CurrentReadOnlySourceFiles cacheDuring: [
+ 		ClassAPIHelpBuilder 
+ 			buildHierarchicalHelpTopicFrom: Integer 
+ 			withSubclasses: false 
+ 			withMethods: true ].
- 	topic := ClassAPIHelpBuilder 
- 				buildHierarchicalHelpTopicFrom: Integer 
- 				withSubclasses: false 
- 				withMethods: true.
  	self assert: topic subtopics size = 2.
  	self assert: topic subtopics first title = 'Instance side'.
  	self assert: topic subtopics last title = 'Class side'
   
  
   !




More information about the Squeak-dev mailing list