mirror of
https://gitlab.com/spaceti-app/integrations/common/server-sdk.git
synced 2026-07-12 14:50:48 +02:00
42 lines
559 B
C++
42 lines
559 B
C++
/*
|
|
* Copyright (C) Filip Bucek - All Rights Reserved
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited
|
|
* Proprietary and confidential
|
|
* Written by Filip Bucek <fbucek@invloop.cz>, 2019
|
|
*/
|
|
#include <QtTest>
|
|
|
|
// add necessary includes here
|
|
|
|
class basicTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
basicTest();
|
|
~basicTest();
|
|
|
|
private slots:
|
|
void test_case1();
|
|
|
|
};
|
|
|
|
basicTest::basicTest()
|
|
{
|
|
|
|
}
|
|
|
|
basicTest::~basicTest()
|
|
{
|
|
|
|
}
|
|
|
|
void basicTest::test_case1()
|
|
{
|
|
|
|
}
|
|
|
|
QTEST_APPLESS_MAIN(basicTest)
|
|
|
|
#include "tst_basictest.moc"
|