AutoTest: Unify framework and tool naming

Use the same name for the test framework or tool across
Qt Creator.

Change-Id: I3116644ab03cc46c2e9d7e8aa3b8af8a5386dba4
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2022-06-09 15:02:30 +02:00
parent e3bb14d0d2
commit 146c277837
15 changed files with 49 additions and 12 deletions

View File

@@ -40,8 +40,7 @@ ITestTreeItem *QtTestFramework::createRootNode()
{
return new QtTestTreeItem(
this,
QCoreApplication::translate("QtTestFramework",
QtTest::Constants::FRAMEWORK_SETTINGS_CATEGORY),
displayName(),
Utils::FilePath(), ITestTreeItem::Root);
}
@@ -50,6 +49,12 @@ const char *QtTestFramework::name() const
return QtTest::Constants::FRAMEWORK_NAME;
}
QString QtTestFramework::displayName() const
{
return QCoreApplication::translate("QtTestFramework",
QtTest::Constants::FRAMEWORK_SETTINGS_CATEGORY);
}
unsigned QtTestFramework::priority() const
{
return QtTest::Constants::FRAMEWORK_PRIORITY;