[squeak-dev] The Trunk: KernelTests-ul.176.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 17 02:37:43 UTC 2011


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

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

Name: KernelTests-ul.176
Author: ul
Time: 17 March 2011, 3:37:31.367 am
UUID: ef3f714b-2d87-824e-bd67-af4886406f61
Ancestors: KernelTests-dtl.175

- cache read only source files during some tests

=============== Diff against KernelTests-dtl.175 ===============

Item was changed:
  ----- Method: BehaviorTest>>testFormalParameterNames (in category 'tests') -----
  testFormalParameterNames
  	| method |
  	method := #sampleMessageWithFirstArgument:andInterleavedCommentBeforeSecondArgument:.
  	self assert: (self class formalParametersAt: method) size = 2.
  	self assert: (self class formalParametersAt: method) asArray = #('firstArgument' 'secondArgument').
+ 	CurrentReadOnlySourceFiles cacheDuring: [
+ 		Object selectorsDo: [:e |
+ 			self assert: (Object formalParametersAt: e) size = e numArgs]].!
- 	Object selectorsDo: [:e |
- 		self assert: (Object formalParametersAt: e) size = e numArgs].!




More information about the Squeak-dev mailing list