mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-10 00:19:41 +00:00
22 lines
399 B
C++
22 lines
399 B
C++
#ifndef ITEST_H
|
|
#define ITEST_H
|
|
|
|
/**
|
|
* @brief The iTest class is simle interface for testing.
|
|
* This calass have only one method "Test" for run test functions.
|
|
*/
|
|
class iTest
|
|
{
|
|
public:
|
|
iTest() = default;
|
|
virtual ~iTest() = default;
|
|
|
|
/**
|
|
* @brief test run tests of object.
|
|
* @return true if test finished successful
|
|
*/
|
|
virtual void test() = 0;
|
|
};
|
|
|
|
#endif // ITEST_H
|