Move qRegisterMetaType calls into initTestCase().

This commit is contained in:
Felix Geyer 2010-09-18 17:15:22 +02:00
parent 36d974649e
commit c93ac9f6fc
3 changed files with 17 additions and 3 deletions

View file

@ -28,9 +28,15 @@ class TestGroupModel : public QObject
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void test();
};
void TestGroupModel::initTestCase()
{
qRegisterMetaType<QModelIndex>("QModelIndex");
}
void TestGroupModel::test()
{
Database* db = new Database();