io.kroxylicious.testing.kafka.junit5ext.Injector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testing-junit5-extension Show documentation
Show all versions of testing-junit5-extension Show documentation
Provides a JUnit5 extension for providing KafkaCluster implementations to tests and running tests over multiple cluster configurations.
/*
* Copyright Kroxylicious Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.kroxylicious.testing.kafka.junit5ext;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Type;
import org.junit.jupiter.api.extension.ExtensionContext;
@FunctionalInterface
interface Injector {
X inject(String description,
AnnotatedElement sourceElement,
Class type,
Type genericType,
ExtensionContext extensionContext);
}