3#include <gmock/gmock.h>
4#include <gtest/gtest.h>
13using ::testing::ElementsAre;
14using ::testing::Return;
15using ::testing::StrictMock;
21TEST(AvmSimulationL1ToL2MessageTree, Read)
28 std::vector<FF> sibling_path = { 1, 2, 3, 4, 5 };
31 .nextAvailableLeafIndex = 128,
35 uint64_t leaf_index = 30;
37 EXPECT_CALL(
merkle_check, assert_membership(msg_hash, leaf_index, _, snapshot.
root)).WillRepeatedly(Return());
45 .leaf_value = msg_hash,
46 .leaf_index = leaf_index,
51 .leaf_value = msg_hash,
52 .leaf_index = leaf_index,
EventEmitter< DataCopyEvent > event_emitter
TEST(EmitUnencryptedLogTest, Basic)