Avoid Inheriting Super Class Tests in ScalaTest
问题 I'd like to use test code from another project which has tightly coupled some utility methods along with their tests. I would like to inherit from this class so I'm able to use the utility methods but don't want the accompanying tests. Is there a way to inherit from this other Suite without also registering the tests? I've tried extending from a replica of the class labeled with the @DoNotDiscover annotation but this doesn't seem to have the desired effect. I'd also be interested if there was