[Pkg] The Trunk: KernelTests-nice.125.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Dec 25 18:11:43 UTC 2009


Nicolas Cellier uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-nice.125.mcz

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

Name: KernelTests-nice.125
Author: nice
Time: 25 December 2009, 7:11:26 am
UUID: b3151f4e-b335-4907-a1da-f365456e3c67
Ancestors: KernelTests-nice.124

Oops, sorry, fix my own test, an OrderedCollection is not equal to an Array...

=============== Diff against KernelTests-nice.124 ===============

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').
- 	self assert: (self class formalParametersAt: method) = #('firstArgument' 'secondArgument').
  	Object selectorsDo: [:e |
  		self assert: (Object formalParametersAt: e) size = e numArgs].!



More information about the Packages mailing list