| Class | Line # | Actions | |||||
|---|---|---|---|---|---|---|---|
| DataGeneratorProvider | 15 | 0 | - | 0 | 0 |
| 1 | package guru.mikelue.foxglove.functional; | |
| 2 | ||
| 3 | import java.util.function.Supplier; | |
| 4 | ||
| 5 | import guru.mikelue.foxglove.DataGenerator; | |
| 6 | import guru.mikelue.foxglove.TableFacet; | |
| 7 | ||
| 8 | /** | |
| 9 | * Provides {@link DataGenerator} instances, | |
| 10 | * this interface is usually used by <a href="https://docs.junit.org/current/user-guide/#extensions">JUnit extension</a> or | |
| 11 | * <a href="https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/test/context/TestExecutionListener.html">TestExecutionListener</a> of SpringFramework. | |
| 12 | * | |
| 13 | * @param <T> The type of table facet | |
| 14 | */ | |
| 15 | public interface DataGeneratorProvider<T extends TableFacet> extends Supplier<DataGenerator<T>> {} |