You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
291 B
36 lines
291 B
2 years ago
|
#include <QtTest>
|
||
|
|
||
|
// add necessary includes here
|
||
|
|
||
|
class test : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
test();
|
||
|
~test();
|
||
|
|
||
|
private slots:
|
||
|
void test_case1();
|
||
|
|
||
|
};
|
||
|
|
||
|
test::test()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
test::~test()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void test::test_case1()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
QTEST_APPLESS_MAIN(test)
|
||
|
|
||
|
#include "tst_test.moc"
|