mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-24 16:42:46 +01:00
25 lines
397 B
C++
25 lines
397 B
C++
/*
|
|
This software is in the public domain, furnished "as is", without technical
|
|
support, and with no warranty, express or implied, as to its usefulness for
|
|
any purpose.
|
|
*/
|
|
|
|
#ifndef MIRALL_TESTFIRST_H
|
|
#define MIRALL_TESTFIRST_H
|
|
|
|
#include <QtTest>
|
|
|
|
|
|
class TestFirst : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void testTheFirstThing()
|
|
{
|
|
QVERIFY( true );
|
|
}
|
|
};
|
|
|
|
#endif
|