Re: [Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Pierce Ng
On Thu, May 23, 2019 at 02:14:08PM +0200, Cyril Ferlicot wrote: > Currently, to inherit tests you need to override > #shouldInheritSelectors to return true. Thank you Cyril.

Re: [Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Tim Mackinnon
Oh yeah - I forgot about that one too… and another developer wastes time on that strange decision (we really must get it changed, its just not what you expect) > On 23 May 2019, at 13:14, Cyril Ferlicot wrote: > > > Currently, to inherit tests you need to override > #shouldInheritSelectors

Re: [Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Cyril Ferlicot
On Thu, May 23, 2019 at 12:17 PM Pierce Ng wrote: > > Hi all, > > I have a testing class that is sub-subclass of TestCase, i.e., the class > hierarchy looks like this: > > TestCase > ExistingTestingClass > MyNewTestingClass > > How do I get TestRunner to run MyNewTestingClass's tests,

Re: [Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Tim Mackinnon
Hi Pierce - not sure I understand what you are trying to do - I tend to run all tests in a package which it cmd-t in calypso, but I sometimes need to run lots of disjoint tests, so I created a fake test and overrode the suite method eg: TestCase subclass: #AllExercismTests

[Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Pierce Ng
Hi all, I have a testing class that is sub-subclass of TestCase, i.e., the class hierarchy looks like this: TestCase ExistingTestingClass MyNewTestingClass How do I get TestRunner to run MyNewTestingClass's tests, as well as ExistingTestingClass's tests in the context of