use of org.springframework.boot.configurationsample.immutable.ImmutableNameAnnotationProperties in project spring-boot by spring-projects.
the class ImmutableNameAnnotationPropertiesTests method immutableNameAnnotationProperties.
@Test
void immutableNameAnnotationProperties() {
ConfigurationMetadata metadata = compile(ImmutableNameAnnotationProperties.class);
assertThat(metadata).has(Metadata.withProperty("named.import", String.class).fromSource(ImmutableNameAnnotationProperties.class));
}
Aggregations