반응형
package egovframework.admin.sys.bbs.mst.service.impl;
import egovframework.admin.sys.bbs.mst.dto.BbsMstVO;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.annotation.Commit;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import java.util.List;
@RunWith(SpringJUnit4ClassRunner.class)
//context로 시작하는 모든 bean xml파일 참조(context-aspect.xml, context-common.xml 등등)
@ContextConfiguration(locations = {"classpath*:egovframework/spring/com/**/context-*.xml"})
@WebAppConfiguration
public class BbsMstDAOTest {
// DI
@Autowired
private BbsMstDAO bbsMstDAO;
@Test
// @Ignore
public void 목록ok() {
BbsMstVO b = new BbsMstVO();
List<BbsMstVO> list = bbsMstDAO.selectBbsMstList(b);
}
@Test
@Ignore
public void 상세ok() {
BbsMstVO b = new BbsMstVO();
// b.setBbsId(1);
BbsMstVO detail = bbsMstDAO.selectBbsMstDetail(b);
}
}
요즘 프로젝트 때문에 포스팅할 시간이 없네..
반응형
'IT > development' 카테고리의 다른 글
[spring] egovframework(4.1 ver) 단순 메일 발송 (33) | 2023.12.19 |
---|---|
[IDE] IntelliJ auto import (31) | 2023.12.17 |
[Java] 추상 클래스, 추상 메소드 간단 예제 (57) | 2023.12.05 |
[springBoot] springBoot,java version downgrade (68) | 2023.11.27 |
[springBoot] spring batch service 개발 1 (62) | 2023.11.27 |