4
0
mirror of https://github.com/QuasarApp/CMakeProject.git synced 2025-05-01 07:54:41 +00:00
CMakeProject/tests/units/exampletest.h

19 lines
256 B
C
Raw Normal View History

#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