All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.hilling.junit.cdi.microprofile.ConfigPropertyValue Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package de.hilling.junit.cdi.microprofile;


import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Defines an overriding property value used in cdi unit tests.
 */
@Retention(RUNTIME)
@Target({METHOD, TYPE})
@Repeatable(ConfigPropertyValues.class)
public @interface ConfigPropertyValue {

    String name();

    String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy