org.kiwiproject.test.junit.jupiter.H2Database Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kiwi-test Show documentation
Show all versions of kiwi-test Show documentation
Kiwi Test is a test utility library.
package org.kiwiproject.test.junit.jupiter;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* {@link H2Database} can be used to annotate a parameter of type {@link org.kiwiproject.test.h2.H2FileBasedDatabase}
* in lifecycle or test methods.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
public @interface H2Database {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy