xgouchet / Elmyr

A utility to make Kotlin/Java tests random yet reproducible
Other
83 stars 3 forks source link

[JUnit5] Include ForgeConfiguration from parent class #44

Closed xgouchet closed 4 years ago

xgouchet commented 4 years ago
@ ExtendWith(ForgeExtension::class)
@ForgeConfiguration(Configurator::class)
abstract class A {
}

class B : A() {
}

When running tests from B, the configurator is not found. It would be neat if Elmyr could find it automatically!