@Before
[Spring] JUnit - @Before, @After
💡 @Before, @After 란? Test 코드에서 아래 코드가 계속 중복되는 것을 볼 수 있다. ApplicationContext context = new GenericXmlApplicationContext("applicationContext.xml"); User dao = context.getBean("userDao", UserDao.class); 이렇게 중복된 코드는 별도의 메소드로 뽑아내는 것이 가장 손쉬운 방법인데, 메소드 추출 리팩토링 방법이 아닌 JUnit이 제공하는 기능인 @Before, @After가 존재한다. ✏️ @Before는 반복되는 준비 작업을 별도의 메소드에 넣게 해 주고, 이를 매번 테스트 메소드를 실행하기 전에 먼저 자동으로 실행시켜주는 기능이다. ✏️ @After는 @..