FogBugz (Case [Issue]20078) _Inbox - Inconsistent name ending of test case subclasses

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

FogBugz (Case [Issue]20078) _Inbox - Inconsistent name ending of test case subclasses

Pharo Issue Tracker
FogBugz Notification
avatar
Henrik Nergaard opened Case 20078: Inconsistent name ending of test case subclasses and assigned it to Everyone:
Bug in Project:  _Inbox: Not Spam  •  You are subscribed to this case
<code>

| a b c |

a := OrderedCollection new.
b := OrderedCollection new.
c := OrderedCollection new.

TestCase allSubclassesDo: [ :class |
    (class name endsWith: 'Tests') ifTrue: [ 
        a add: class    
    ] ifFalse: [ 
        (class name endsWith: 'Test') ifTrue: [ 
            b add: class 
        ] ifFalse: [ 
           c add: class
        ]
    ]
].

{ a . b . c } inspect

</code>
Priority Priority: 5 – Fix If Time Status Status: Work Needed
Assigned To Assigned to: Everyone Milestone Milestone: Pharo7.0

Go to Case
No longer need updates? Unsubscribe from this case.

Don't want FogBugz notifications anymore? Update your preferences.

FogBugz

_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
https://lists.gforge.inria.fr/mailman/listinfo/pharo-bugtracker