mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Rename TestClock to MockClock and move it to the mock directory
This commit is contained in:
parent
108e4efc8a
commit
bea31f9bcc
7 changed files with 53 additions and 53 deletions
|
@ -17,7 +17,7 @@
|
|||
|
||||
#include "TestMerge.h"
|
||||
#include "TestGlobal.h"
|
||||
#include "stub/TestClock.h"
|
||||
#include "mock/MockClock.h"
|
||||
|
||||
#include "core/Merger.h"
|
||||
#include "core/Metadata.h"
|
||||
|
@ -34,7 +34,7 @@ namespace
|
|||
return timeInfo;
|
||||
}
|
||||
|
||||
TestClock* m_clock = nullptr;
|
||||
MockClock* m_clock = nullptr;
|
||||
}
|
||||
|
||||
void TestMerge::initTestCase()
|
||||
|
@ -47,13 +47,13 @@ void TestMerge::initTestCase()
|
|||
void TestMerge::init()
|
||||
{
|
||||
Q_ASSERT(m_clock == nullptr);
|
||||
m_clock = new TestClock(2010, 5, 5, 10, 30, 10);
|
||||
TestClock::setup(m_clock);
|
||||
m_clock = new MockClock(2010, 5, 5, 10, 30, 10);
|
||||
MockClock::setup(m_clock);
|
||||
}
|
||||
|
||||
void TestMerge::cleanup()
|
||||
{
|
||||
TestClock::teardown();
|
||||
MockClock::teardown();
|
||||
m_clock = nullptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue