Renamed test case to get rid of stinking name.

This commit is contained in:
Klaas Freitag 2013-08-03 21:39:44 +02:00
Родитель 16d81db117
Коммит ba01a697e6
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -1,4 +1,4 @@
include_directories(${CMAKE_CURRENT_LIST_DIR}/../src)
include(owncloud_add_test.cmake)
owncloud_add_test(DanimoStinkt)
owncloud_add_test(First)

Просмотреть файл

@ -4,18 +4,18 @@
any purpose.
*/
#ifndef MIRALL_TESTDANIMOSTINKT_H
#define MIRALL_TESTDANIMOSTINKT_H
#ifndef MIRALL_TESTFIRST_H
#define MIRALL_TESTFIRST_H
#include <QtTest>
class TestDanimoStinkt : public QObject
class TestFirst : public QObject
{
Q_OBJECT
private slots:
void testBadSmell()
void testTheFirstThing()
{
QVERIFY( true );
}