mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-28 03:49:20 +03:00
25 lines
413 B
C
25 lines
413 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_TESTDANIMOSTINKT_H
|
||
|
#define MIRALL_TESTDANIMOSTINKT_H
|
||
|
|
||
|
#include <QtTest>
|
||
|
|
||
|
|
||
|
class TestDanimoStinkt : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private slots:
|
||
|
void testBadSmell()
|
||
|
{
|
||
|
QVERIFY( true );
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif
|