BAEL-4785 | Refactor | indentation and pmd violation fix

This commit is contained in:
vishal 2021-04-10 17:42:18 +02:00
parent 8c2db90f7f
commit e183a0a9e5
3 changed files with 10 additions and 10 deletions

View File

@ -5,7 +5,7 @@ import org.springframework.stereotype.Component;
@Component
@Qualifier("cat")
public class Cat implements Animal{
public class Cat implements Animal {
@Override
public String name() {

View File

@ -6,7 +6,7 @@ import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;
@Service
public class MessagingServiceImpl implements MessagingService{
public class MessagingServiceImpl implements MessagingService {
@Autowired
@Qualifier("qualifierComponent")

View File

@ -13,7 +13,7 @@ import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertNotNull;
@ExtendWith(SpringExtension.class)
public class SpringBeanNamingTest {
public class SpringBeanNamingUnitTest {
private AnnotationConfigApplicationContext context;
@ -24,29 +24,29 @@ public class SpringBeanNamingTest {
context.refresh();
}
// To name a bean spring gets the class name and converts the first letter to lowercase.
// Default naming strategy of the spring bean which is using class level annotation
// To name a bean spring gets the class name and converts the first letter to lowercase.
// Default naming strategy of the spring bean which is using class level annotation
@Test
void givenLoggingServiceBeanIsCreated_whenThereIsNoValueProvided_thenBeanNameShouldBeDefaultName() {
assertNotNull(context.getBean("loggingService"));
}
// In this case, to name a bean spring gets the class name and converts the first letter to lowercase.
// In this case, to name a bean spring gets the class name and converts the first letter to lowercase.
@Test
void givenAuditServiceBeanIsCreatedWithMethodLevelAnnotation_whenThereIsNoValueProvided_thenBeanNameShouldBeTheNameOfMethod() {
assertNotNull(context.getBean("audit"));
}
// To name a bean spring gets the class name and converts the first letter to lowercase.
// Default naming strategy of the spring bean which is using class level annotation
// To name a bean spring gets the class name and converts the first letter to lowercase.
// Default naming strategy of the spring bean which is using class level annotation
@Test
void givenLoggingGatewayBeanIsCreatedWithFieldLevelAnnotation_whenThereIsNoValueProvided_thenBeanNameShouldBeDefaultName() {
assertNotNull(context.getBean("loggingGateway"));
}
// spring will create the bean of type CustomComponent with the name "myBean".
// As we're explicitly giving the name to the bean, spring will use this name to refer to it.
// spring will create the bean of type CustomComponent with the name "myBean".
// As we're explicitly giving the name to the bean, spring will use this name to refer to it.
@Test
void givenCustomComponentBeanIsCreate_whenThereIsCustomNameGivenToBean_thenBeanShouldBeIdentifiedByThatName() {
assertNotNull(context.getBean("myBean"));