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

commits at source.squeak.org commits at source.squeak.org
Thu Nov 19 06:16:26 UTC 2009


Andreas Raab uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-ul.110.mcz

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

Name: KernelTests-ul.110
Author: ul
Time: 19 November 2009, 2:24:57 am
UUID: 4f5e88c7-b8fd-374b-a4b8-d9463ff50c78
Ancestors: KernelTests-nice.108

- updated 2 tests which assumed that Dictionary's superclass is Set

=============== Diff against KernelTests-nice.108 ===============

Item was changed:
  ----- Method: BasicBehaviorClassMetaclassTest>>testMetaclassSuperclass (in category 'testing') -----
  testMetaclassSuperclass
  	"self run: #testMetaclassSuperclass"
  
+ 	self assert: Dictionary class superclass == HashedCollection class.
- 	self assert: Dictionary class superclass == Set class.
  	self assert: OrderedCollection class superclass == SequenceableCollection class.
  
  	!

Item was changed:
  ----- Method: BasicBehaviorClassMetaclassTest>>testSuperclass (in category 'testing') -----
  testSuperclass
  	"self run: #testSuperclass"
  
  	| s |
+ 	self assert: Dictionary superclass == HashedCollection.
- 	self assert: Dictionary superclass == Set.
  	self assert: OrderedCollection superclass == SequenceableCollection.
  
  	s := OrderedCollection new.
  	s add: SequenceableCollection.
  	s add: Collection.
  	s add: Object.
  	s add: ProtoObject.
  
  	self assert: OrderedCollection allSuperclasses = s.
  
  	
  	!




More information about the Squeak-dev mailing list