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

commits at source.squeak.org commits at source.squeak.org
Mon Nov 2 02:54:49 UTC 2015


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}. {#+}}).!



More information about the Squeak-dev mailing list