Springframework 단위테스트
- pom.xml 에 의존성 라이브러리 추가
<!-- JUnit -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.maven.artifact.version}</version>
<scope>test</scope>
</dependency>
- /src/test/java 경로에 테스트 클래스 생성 및 테스트 소스작성
// 유닛테스트를 스프링환경에서 실행
@RunWith(SpringJUnit4ClassRunner.class)
/**
* JUnit 테스트환경에서는 web.xml이 로드되지 않기때문에
* contextConfigLocation위치를 직접 잡아줘야함
*/
@ContextConfiguration(locations = {
"classpath*:egovframework/spring/**/context-*.xml"
})
public class JHTest {
@Resource(name="mhScheduleJob")
MhScheduleJob mhScheduleJob;
@Test
public void ss() throws Exception {
mhScheduleJob.sendSMS();
// Assert 클래스 활용하여 다양한 테스트 수행
}
}
태그: junit
Back to Top ↑
댓글남기기