mirror of https://github.com/libp2p/cpp-libp2p.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
571 B
20 lines
571 B
/**
|
|
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef LIBP2P_TEST_MOCK_LIBP2P_NETWORK_DNSADDR_RESOLVER_MOCK_HPP
|
|
#define LIBP2P_TEST_MOCK_LIBP2P_NETWORK_DNSADDR_RESOLVER_MOCK_HPP
|
|
|
|
#include "libp2p/network/dnsaddr_resolver.hpp"
|
|
|
|
#include <gmock/gmock.h>
|
|
|
|
namespace libp2p::network {
|
|
|
|
struct DnsaddrResolverMock : public DnsaddrResolver {
|
|
MOCK_METHOD2(load, void(multi::Multiaddress, AddressesCallback));
|
|
};
|
|
} // namespace libp2p::network
|
|
|
|
#endif // LIBP2P_TEST_MOCK_LIBP2P_NETWORK_DNSADDR_RESOLVER_MOCK_HPP
|
|
|