diff options
author | Christian Stenger <christian.stenger@qt.io> | 2022-06-09 15:02:30 +0200 |
---|---|---|
committer | Christian Stenger <christian.stenger@qt.io> | 2022-06-10 08:47:12 +0000 |
commit | 146c277837d77a487d4282a725647bc44845f61a (patch) | |
tree | e0b7376de96791d4097923027fde9af74091022d /src/plugins/autotest/boost/boosttestframework.cpp | |
parent | e3bb14d0d2d75337bc3b0d0a44294cf622a51963 (diff) | |
download | qt-creator-146c277837d77a487d4282a725647bc44845f61a.tar.gz |
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>
Diffstat (limited to 'src/plugins/autotest/boost/boosttestframework.cpp')
-rw-r--r-- | src/plugins/autotest/boost/boosttestframework.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/plugins/autotest/boost/boosttestframework.cpp b/src/plugins/autotest/boost/boosttestframework.cpp index 74a7880c98..2b9b4837b8 100644 --- a/src/plugins/autotest/boost/boosttestframework.cpp +++ b/src/plugins/autotest/boost/boosttestframework.cpp @@ -41,8 +41,7 @@ ITestTreeItem *BoostTestFramework::createRootNode() { return new BoostTestTreeItem( this, - QCoreApplication::translate("BoostTestFramework", - BoostTest::Constants::FRAMEWORK_SETTINGS_CATEGORY), + displayName(), Utils::FilePath(), ITestTreeItem::Root); } @@ -51,6 +50,12 @@ const char *BoostTestFramework::name() const return BoostTest::Constants::FRAMEWORK_NAME; } +QString BoostTestFramework::displayName() const +{ + return QCoreApplication::translate("BoostTestFramework", + BoostTest::Constants::FRAMEWORK_SETTINGS_CATEGORY); +} + unsigned BoostTestFramework::priority() const { return BoostTest::Constants::FRAMEWORK_PRIORITY; |