blob: 5c2b3cfb1838414dbb1e43dca857c3064fa22c8f [file] [log] [blame]
Patrick Ventureaca98132019-03-18 11:14:16 -07001#pragma once
2
3#include "handler.hpp"
4
5#include <cstdint>
6#include <string>
7
8#include <gmock/gmock.h>
9
10namespace ethstats
11{
12
13class HandlerMock : public EthStatsInterface
14{
15 public:
16 ~HandlerMock() = default;
17
Jayanth Othayothaca56662025-10-07 06:11:00 -050018 MOCK_METHOD(bool, validIfNameAndField, (const std::string&), (const));
19 MOCK_METHOD(std::uint64_t, readStatistic, (const std::string&), (const));
Patrick Ventureaca98132019-03-18 11:14:16 -070020};
21
22} // namespace ethstats