📄 protectorcontext.h
字号:
#ifndef CPPUNIT_PROTECTORCONTEXT_H#define CPPUNIT_PROTECTORCONTEXT_H#include <cppunit/Portability.h>#include <string>CPPUNIT_NS_BEGINclass Test;class TestResult;/*! \brief Protector context (Implementation). * Implementation detail. * \internal Context use to report failure in Protector. */class CPPUNIT_API ProtectorContext{public: ProtectorContext( Test *test, TestResult *result, const std::string &shortDescription ) : m_test( test ) , m_result( result ) , m_shortDescription( shortDescription ) { } Test *m_test; TestResult *m_result; std::string m_shortDescription;};CPPUNIT_NS_END#endif // CPPUNIT_PROTECTORCONTEXT_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -