AutoTest: Use better names and remove unused code

Change-Id: Ifb7f252e7c3fd020537eb46c62d8f5700b8a55ef
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2017-02-21 14:53:58 +01:00
parent 721c902cd8
commit 74fb4bb014
7 changed files with 44 additions and 57 deletions

View File

@@ -122,7 +122,7 @@ TestConfiguration *QuickTestTreeItem::testConfiguration() const
testFunctions << name() + "::" + childItem(row)->name();
config = new QuickTestConfiguration;
config->setTestCases(testFunctions);
config->setProFile(proFile());
config->setProjectFile(proFile());
config->setProject(project);
break;
}
@@ -131,7 +131,7 @@ TestConfiguration *QuickTestTreeItem::testConfiguration() const
QStringList testFunction(parent->name() + "::" + name());
config = new QuickTestConfiguration;
config->setTestCases(testFunction);
config->setProFile(parent->proFile());
config->setProjectFile(parent->proFile());
config->setProject(project);
break;
}
@@ -171,7 +171,7 @@ QList<TestConfiguration *> QuickTestTreeItem::getAllTestConfigurations() const
for ( ; it != end; ++it) {
QuickTestConfiguration *tc = new QuickTestConfiguration;
tc->setTestCaseCount(it.value());
tc->setProFile(it.key());
tc->setProjectFile(it.key());
tc->setProject(project);
result << tc;
}
@@ -201,7 +201,7 @@ QList<TestConfiguration *> QuickTestTreeItem::getSelectedTestConfigurations() co
tc = new QuickTestConfiguration;
tc->setTestCaseCount(1);
tc->setUnnamedOnly(true);
tc->setProFile(proFile);
tc->setProjectFile(proFile);
tc->setProject(project);
foundProFiles.insert(proFile, tc);
}
@@ -244,7 +244,7 @@ QList<TestConfiguration *> QuickTestTreeItem::getSelectedTestConfigurations() co
} else {
tc = new QuickTestConfiguration;
tc->setTestCases(testFunctions);
tc->setProFile(child->proFile());
tc->setProjectFile(child->proFile());
tc->setProject(project);
foundProFiles.insert(child->proFile(), tc);
}