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
|
@ -18,7 +18,7 @@
|
|||
|
||||
#include "TestGroup.h"
|
||||
#include "TestGlobal.h"
|
||||
#include "stub/TestClock.h"
|
||||
#include "mock/MockClock.h"
|
||||
|
||||
#include <QSignalSpy>
|
||||
|
||||
|
@ -29,7 +29,7 @@ QTEST_GUILESS_MAIN(TestGroup)
|
|||
|
||||
namespace
|
||||
{
|
||||
TestClock* m_clock = nullptr;
|
||||
MockClock* m_clock = nullptr;
|
||||
}
|
||||
|
||||
void TestGroup::initTestCase()
|
||||
|
@ -42,13 +42,13 @@ void TestGroup::initTestCase()
|
|||
void TestGroup::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 TestGroup::cleanup()
|
||||
{
|
||||
TestClock::teardown();
|
||||
MockClock::teardown();
|
||||
m_clock = nullptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue