On Thu, May 23, 2019 at 12:17 PM Pierce Ng <[email protected]> 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, as well as > ExistingTestingClass's tests in the context of MyNewTestingClass? >
Hi, Currently, to inherit tests you need to override #shouldInheritSelectors to return true. > Pierce > -- Cyril Ferlicot https://ferlicot.fr
