Credits/tests/units/exampletest.h

19 lines
256 B
C
Raw Permalink Normal View History

2021-03-18 17:39:15 +03:00
#ifndef EXAMPLE_TEST_H
#define EXAMPLE_TEST_H
#include "test.h"
#include "testutils.h"
#include <QtTest>
class ExampleTest: public Test, protected TestUtils
{
public:
ExampleTest();
~ExampleTest();
void test();
};
#endif // EXAMPLE_TEST_H