2014년 10월 21일 화요일

CppUnitLite 단위테스트 환경설정

폴더 구조

  • sources
    • client
      • client.vcxproj
    • common
      • common.vcxproj
    • server
      • server.vcxproj
    • clientexe
      • clientexe.vcxproj
    • serverexe
      • serverexe.vcxproj
    • test
      • test.vcxproj
    • all.sln
테스트하고자 하는 로직들은 모두 라이브러리로 작성되어져야 한다. 즉, client.vcxproj, common.vcxproj, server.vcxproj등은 모두 라이브러리 프로젝트이며, clientexe.vcxproj와 serverexe.vcxproj, test.vcxproj는 어플리케이션 프로젝트들이다. 그리고, 어플리케이션 프로젝트에서는 라이브러리에 있는 클래스를 생성하고, 실행하는 간단한 코드만 들어있도록 만든다.

test에는 테스트 관련 파일이 있다.

댓글 없음:

댓글 쓰기