The Trunk: KernelTests-nice.125.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: KernelTests-nice.125.mcz

commits-2
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].!