test코드

전체코드 보기 더보기 package hello.core.beanfind; import hello.core.AppConfig; import hello.core.dicsount.DiscountPolicy; import hello.core.dicsount.FixDiscountPolicy; import hello.core.dicsount.RateDiscountPolicy; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.NoUniqueBeanDefinitionException; ..
테스트 코드로 진행하겠다. 등록된 빈 보기 AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(SameBeanConfig.class); SameBeanConfig에 타입이 MemberRepository인 것 2개 만들기 @Configuration static class SameBeanConfig { @Bean public MemberRepository memberRepository1() { return new MemoryMemberRepository(); } @Bean public MemberRepository memberRepository2() { return new MemoryMemberRepository(); ..
Test코드 진행로 진행해보겠다. 코드 전체보기 더보기 package hello.core.beanfind; import hello.core.AppConfig; import hello.core.member.MemberService; import hello.core.member.MemberServiceImpl; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.NoSuchBeanDefinitionException; import org.springframework.context.annotation.AnnotationConfigApplicationCon..
sesam
'test코드' 태그의 글 목록