1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2024-10-19 04:42:46 +02:00
Nextcloud-Desktop/test/testfirst.h
2013-08-05 09:39:06 +02:00

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