You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
319 B
C++
27 lines
319 B
C++
#include <QString>
|
|
#include <QtTest>
|
|
|
|
class ClientTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ClientTests();
|
|
|
|
private Q_SLOTS:
|
|
void testCase1();
|
|
};
|
|
|
|
ClientTests::ClientTests()
|
|
{
|
|
}
|
|
|
|
void ClientTests::testCase1()
|
|
{
|
|
QVERIFY2(true, "Failure");
|
|
}
|
|
|
|
QTEST_APPLESS_MAIN(ClientTests)
|
|
|
|
#include "client-tests.moc"
|