ch.inftec.ju.testing.db.JuDbTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ju-testing Show documentation
Show all versions of ju-testing Show documentation
Contains helping classes for Unit Testing
package ch.inftec.ju.testing.db;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation to configure JU db tests.
*
* If not present, default values will be used or values will be loaded from
* property files.
*
* If present, these values override any other values that might be specified.
* @author Martin
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface JuDbTest {
/**
* Name of the profile.
* @return Profile name
*/
String profile();
/**
* Name of the persistence unit to use.
* @return Persistence Unit name
*/
String persistenceUnit();
}