/
jiteman
/
jsd-foreign-libreoffice-cppunit
Обзор
Документация
Войти
/
jiteman
/
jsd-foreign-libreoffice-cppunit
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
include/cppunit/extensions/TestSetUp.h
33 строки
599 B
jiteman
initial commit has been done
14 апр 2024, 15:49
14 апр 2024, 15:49
4c53812
Код
Авторство
О чём код?
#ifndef CPPUNIT_EXTENSIONS_TESTSETUP_H #define CPPUNIT_EXTENSIONS_TESTSETUP_H #include <cppunit/extensions/TestDecorator.h> CPPUNIT_NS_BEGIN class Test; class TestResult; /*! \brief Decorates a test by providing a specific setUp() and tearDown(). */ class CPPUNIT_API TestSetUp : public TestDecorator { public: TestSetUp( Test *test ); void run( TestResult *result ) override; protected: virtual void setUp(); virtual void tearDown(); private: TestSetUp( const TestSetUp & ); void operator =( const TestSetUp & ); }; CPPUNIT_NS_END #endif // CPPUNIT_EXTENSIONS_TESTSETUP_H