use of org.springframework.boot.configurationsample.simple.SimplePrefixValueProperties in project spring-boot by spring-projects.
the class ConfigurationMetadataAnnotationProcessorTests method simplePrefixValueProperties.
@Test
public void simplePrefixValueProperties() throws Exception {
ConfigurationMetadata metadata = compile(SimplePrefixValueProperties.class);
assertThat(metadata).has(Metadata.withGroup("simple").fromSource(SimplePrefixValueProperties.class));
assertThat(metadata).has(Metadata.withProperty("simple.name", String.class).fromSource(SimplePrefixValueProperties.class));
}
Aggregations