File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
junit-jupiter-engine/src/test/java/org/junit/jupiter/api/extension Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ public class KitchenSinkExtension implements
4040 AfterAllCallback ,
4141
4242 // Dependency Injection
43+ TestInstanceFactory ,
4344 TestInstancePostProcessor ,
4445 ParameterResolver ,
4546
@@ -84,6 +85,13 @@ public void afterAll(ExtensionContext context) throws Exception {
8485
8586 // --- Dependency Injection ------------------------------------------------
8687
88+ @ Override
89+ public Object createTestInstance (TestInstanceFactoryContext factoryContext , ExtensionContext extensionContext )
90+ throws TestInstantiationException {
91+
92+ return null ;
93+ }
94+
8795 @ Override
8896 public void postProcessTestInstance (Object testInstance , ExtensionContext context ) throws Exception {
8997 }
You can’t perform that action at this time.
0 commit comments