Remove empty functions from QDirModel test.

Change-Id: Ieb8af41425739f9175df26224b171cd9f8b3c4f3
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
This commit is contained in:
Jason McDonald 2011-11-03 15:07:09 +10:00 committed by Qt by Nokia
parent edc77f5aa8
commit f79dc01304

View File

@ -39,7 +39,6 @@
**
****************************************************************************/
#include <QtTest/QtTest>
#include <qdirmodel.h>
#include <qapplication.h>
@ -53,20 +52,11 @@
class tst_QDirModel : public QObject
{
Q_OBJECT
public:
tst_QDirModel();
virtual ~tst_QDirModel();
public slots:
void initTestCase();
void cleanupTestCase();
#ifdef Q_OS_UNIX
void init();
#endif
void cleanup();
private slots:
void getSetCheck();
#ifdef Q_OS_UNIX
@ -144,19 +134,6 @@ void tst_QDirModel::getSetCheck()
Q_DECLARE_METATYPE(QModelIndex)
Q_DECLARE_METATYPE(QModelIndexList)
tst_QDirModel::tst_QDirModel()
{
}
tst_QDirModel::~tst_QDirModel()
{
}
void tst_QDirModel::initTestCase()
{
}
void tst_QDirModel::cleanupTestCase()
{
QDir current;
@ -178,10 +155,6 @@ void tst_QDirModel::init()
}
#endif
void tst_QDirModel::cleanup()
{
}
/*
tests
*/