mirror of
https://gitlab.com/spaceti-app/integrations/common/server-sdk.git
synced 2026-07-12 10:50:36 +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 UtilsTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
UtilsTest();
|
|
~UtilsTest();
|
|
|
|
private slots:
|
|
void test_case1();
|
|
|
|
};
|
|
|
|
UtilsTest::UtilsTest()
|
|
{
|
|
|
|
}
|
|
|
|
UtilsTest::~UtilsTest()
|
|
{
|
|
|
|
}
|
|
|
|
void UtilsTest::test_case1()
|
|
{
|
|
|
|
}
|
|
|
|
QTEST_APPLESS_MAIN(UtilsTest)
|
|
|
|
#include "tst_utilstest.moc"
|