The Trunk: Tests-ul.337.mcz

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

The Trunk: Tests-ul.337.mcz

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

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

Name: Tests-ul.337
Author: ul
Time: 2 November 2015, 4:54:37.744 am
UUID: 125ed088-9fca-483e-b8e9-7bb02e1f58a0
Ancestors: Tests-dtl.336

Sets are not equal to IdentitySets anymore, so we have to create instances of the right classes to make some tests pass.

=============== Diff against Tests-dtl.336 ===============

Item was changed:
  ----- Method: SystemNavigationTest>>testAllImplementedMessagesWithout (in category 'as yet unclassified') -----
  testAllImplementedMessagesWithout
+
+ self assert: #(bar baz classFoo) asIdentitySet
- self assert: #(bar baz classFoo) asSet
  equals: (sysNav allImplementedMessagesWithout: {{env at: #Griffle}. {#foo}}).!

Item was changed:
  ----- Method: SystemNavigationTest>>testAllSentMessagesWithout (in category 'as yet unclassified') -----
  testAllSentMessagesWithout
+
+ self
+ assert: (#(foo bar) asIdentitySet
+ addAll: Smalltalk presumedSentMessages;
+ addAll: Smalltalk specialSelectors;
+ yourself)
- self assert: #(foo bar) asSet , Smalltalk presumedSentMessages , Smalltalk specialSelectors
  equals: (sysNav allSentMessagesWithout: {{env at: #Griffle}. {#+}}).!