mirror of
https://github.com/XRPLF/clio.git
synced 2026-04-29 15:37:53 +00:00
13 lines
288 B
C++
13 lines
288 B
C++
#pragma once
|
|
|
|
#include "util/LoggerFixtures.hpp"
|
|
#include "util/MockCounters.hpp"
|
|
|
|
/**
|
|
* @brief Fixture with mock counters
|
|
*/
|
|
struct MockCountersTest : virtual public ::testing::Test {
|
|
protected:
|
|
std::shared_ptr<MockCounters> mockCountersPtr_ = std::make_shared<MockCounters>();
|
|
};
|