Clean up objects in the tests.

This commit is contained in:
Felix Geyer 2011-06-29 18:40:26 +02:00
parent 5cb906c235
commit a104e859cf
4 changed files with 37 additions and 9 deletions

View file

@ -60,7 +60,7 @@ void TestGroupModel::test()
GroupModel* model = new GroupModel(db, this);
new ModelTest(model, this);
ModelTest* modelTest = new ModelTest(model, this);
QModelIndex indexRoot = model->index(0, 0);
QModelIndex index1 = model->index(0, 0, indexRoot);
@ -95,6 +95,9 @@ void TestGroupModel::test()
delete groupRoot;
delete db;
delete modelTest;
delete model;
}
QTEST_MAIN(TestGroupModel);