mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-28 23:55:52 +00:00
Implement basic transformer tests (#689)
This commit is contained in:
@@ -23,11 +23,10 @@
|
||||
|
||||
#include <chrono>
|
||||
|
||||
template <typename DataType>
|
||||
struct MockExtractionDataPipe
|
||||
{
|
||||
MOCK_METHOD(void, push, (uint32_t, std::optional<DataType>&&), ());
|
||||
MOCK_METHOD(std::optional<DataType>, popNext, (uint32_t), ());
|
||||
MOCK_METHOD(void, push, (uint32_t, std::optional<FakeFetchResponse>&&), ());
|
||||
MOCK_METHOD(std::optional<FakeFetchResponse>, popNext, (uint32_t), ());
|
||||
MOCK_METHOD(uint32_t, getStride, (), (const));
|
||||
MOCK_METHOD(void, finish, (uint32_t), ());
|
||||
MOCK_METHOD(void, cleanup, (), ());
|
||||
|
||||
Reference in New Issue
Block a user