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.
35 lines
291 B
35 lines
291 B
#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"
|
|
|