Hi

I would like to kill some tests that do not really make the system better.

testMetaclassSuperclass
        "self run: #testMetaclassSuperclass"

        self assert: Dictionary class superclass == Set class.
        self assert: OrderedCollection class superclass == 
SequenceableCollection class.

testSuperclass
        "self run: #testSuperclass"

        | s |
        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.

        
let me know what you think.

Stef
        

        
_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to