Annotation Interface ProfileValueSourceConfiguration
@Target(TYPE)
@Retention(RUNTIME)
@Documented
@Inherited
public @interface ProfileValueSourceConfiguration
ProfileValueSourceConfiguration
is a class-level annotation for use
with JUnit 4 which is used to specify what type of ProfileValueSource
to use when retrieving profile values configured via
@IfProfileValue
.
This annotation may be used as a meta-annotation to create custom composed annotations.
- Since:
- 2.5
- Author:
- Sam Brannen
- See Also:
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionClass<? extends ProfileValueSource>
The type ofProfileValueSource
to use when retrieving profile values.
-
Element Details
-
value
Class<? extends ProfileValueSource> valueThe type ofProfileValueSource
to use when retrieving profile values.- See Also:
- Default:
- org.springframework.test.annotation.SystemProfileValueSource.class
-