태그>testsuite(총 2개의 글)
'testsuite' 관련 최근글
-
- autotools unit test cutter
-
공부가 본업. by 언제나19|2013/10/23 18:06
autotools에서 기본적으로 지원하는 testsuite tool이 2개가 있나보다.http://www.gnu.org/software/automake/manual/html_node/Tests.html#Tests • Using the TAP test protocol: Integrating test scripts that use the TAP protocol• DejaGnu Tes..
- autotools unit test cutter
-
- Junit의 TestSuite
-
지원 a.k.a shoutrock by 지원|2008/05/08 13:32
Junit의 TestSuite 프로젝트를 진행하다 보면 테스트 케이스가 수십개에서 수백개가 된다. 이러한 경우 이를 TestSuite가 grouping을 한다. public static Test suite(){ TestSuite suite = new TestSuite(); suite.addTestSuite(Test1.class); suite.a..
- Junit의 TestSuite