Use override in test fixtures

This commit is contained in:
Martchus 2019-10-13 18:28:32 +02:00
parent 38987707bd
commit 6497f74046
5 changed files with 9 additions and 9 deletions

View File

@ -10,7 +10,7 @@ set(META_APP_CATEGORIES "Network;FileTransfer")
set(META_GUI_OPTIONAL false)
set(META_VERSION_MAJOR 0)
set(META_VERSION_MINOR 10)
set(META_VERSION_PATCH 2)
set(META_VERSION_PATCH 3)
set(META_VERSION_EXACT_SONAME ON)
set(META_ADD_DEFAULT_CPP_UNIT_TEST_APPLICATION ON)

View File

@ -36,8 +36,8 @@ public:
void test();
void setUp();
void tearDown();
void setUp() override;
void tearDown() override;
private:
DateTime m_startTime;

View File

@ -74,8 +74,8 @@ public:
void testRequestingRescan();
void testDealingWithArbitraryConfig();
void setUp();
void tearDown();
void setUp() override;
void tearDown() override;
private:
template <typename Action, typename... Signalinfo> void waitForConnection(Action action, int timeout, const Signalinfo &... signalInfo);

View File

@ -51,8 +51,8 @@ public:
void testConnectionSettingsAndLoadingSelfSignedCert();
void testSyncthingDir();
void setUp();
void tearDown();
void setUp() override;
void tearDown() override;
private:
};

View File

@ -40,8 +40,8 @@ public:
void testVersion();
void testRunWidthConfig();
void setUp();
void tearDown();
void setUp() override;
void tearDown() override;
private:
std::string setupConfigDir();