테스트 방법에서 서비스와dao 호출

4056 단어
1. 클래스 앞에 주석 달기
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {
     "classpath:mapper/bookmapper.xml"})

2. 의존성 추가
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.11</version>
    <scope>test</scope>
</dependency>
 
<!--spring-test-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>4.1.0.RELEASE</version>
    <scope>test</scope>
</dependency>

3. 테스트 진행
@Autowired
private SampleDao sampleDao;
@Test
public void testGetActivityId(){
     
    sampleDao.getActivityId();
}

좋은 웹페이지 즐겨찾기