One small thing: Say I have a custom abstract tes...
# kotlintest
d
One small thing: Say I have a custom abstract test spec class e.g.
Copy code
abstract class FunctionNodeSpec(nodeType: String, body: suspend AbstractDescribeSpec.DescribeScope.() -> Unit) :
    DescribeSpec() {
    // ...
}
Then inherit from that:
Copy code
class ElementaryNodeTests : FunctionNodeSpec("Elementary node", {
    // ...
}
If I try to run an individual test case within
ElementaryNodeTests
I get this error:
Copy code
Exception in thread "main" java.lang.RuntimeException: Could not detect spec class style for supertypes [class com.mycompany.testmaster.domain.nodes.FunctionNodeSpec]