Levente Uzonyi uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-ul.115.mcz==================== Summary ====================
Name: KernelTests-ul.115
Author: ul
Time: 3 December 2009, 5:11:22 am
UUID: b7d613d4-6eba-7a43-be09-23f76c5856e0
Ancestors: KernelTests-nice.114
- tests for Behavior >> #allSelectorsBelow: and Behavior >> #allSelectors
=============== Diff against KernelTests-nice.114 ===============
Item was added:
+ ----- Method: BehaviorTest>>testAllSelectors (in category 'tests') -----
+ testAllSelectors
+
+ self assert: ProtoObject allSelectors = ProtoObject selectors asIdentitySet.
+ self assert: Object allSelectors = (Object selectors union: ProtoObject selectors) asIdentitySet.!
Item was added:
+ ----- Method: BehaviorTest>>testAllSelectorsBelow (in category 'tests') -----
+ testAllSelectorsBelow
+
+ self assert: (Object allSelectorsBelow: ProtoObject) = Object selectors asIdentitySet.
+ self assert: (Object allSelectorsBelow: nil) = Object selectors asIdentitySet!