- CppUnit . . . . 11 matches
== ExampleTestCase.h ==
#ifndef CPP_UNIT_EXAMPLETESTCASE_H
#define CPP_UNIT_EXAMPLETESTCASE_H
class ExampleTestCase : public CppUnit::TestCase
CPPUNIT_TEST_SUITE( ExampleTestCase ); // TestSuite
== ExampleTestCase.cpp ==
#include "ExampleTestCase.h"
CPPUNIT_TEST_SUITE_REGISTRATION( ExampleTestCase ); // TestSuite 를 등록하기. TestRunner::addTest 가 필요없다.
void ExampleTestCase::testExample () // 테스트 하려는 함수.
void ExampleTestCase::setUp () // fixture 관련 셋팅 코드.
void ExampleTestCase::tearDown () // fixture 관련 셋팅 코드.
* 웹서핑을 통해 이곳에 왔습니다. 위에서 ExampleTestCase 클래스와 SimpleTest와의 관계는 어떻게 됩니까?
main에서는 ExampleTestCase를 사용하지 않는데요...
Found 1 matching page out of 7555 total pages (5000 pages are searched)
You can also click here to search title.