下面我们用一个Sample 来演示BaseTestCase system 是如何实现动作的录制。
首先我们来看一下测试用类的代码:
//.h
#include "BaseTestCase.h"
class CTest_View : public CBaseTestCase
{
TEST_CASE_MAP
BASE_TEST_CASE_H(CTest_View)
public:
…….
void test_Annotation_circle();
……
};
// .cpp
BEGIN_TEST_CASE_MAP(CTest_View)
……….
TEST_CASE_MEMBER(test_Annotation_circle)
………………..
END_TEST_CASE_MAP
void CTest_View::test_Annotation_circle()
{
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/