[스프링]26. junit4 테스트코드 작성하기
1. Mybatis의 쿼리테스트 일반적인 Dao 형식과는 다르게 @Mapper - XML 네임스페이스 매핑 구조로 정의되었다. @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration({ "file:src/main/resources/egovframework/spring/context-mapper.xml", "file:src/main/resources/egovframework/spring/context-datasource.xml"}) public class WeekReportServiceTest { @Autowired private WeekReportMapper weekReportMapper; //안녕하세요 @Test public void 서비스코드_테..