1 // Copyright (c) 2019 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef QUICHE_QUIC_QBONE_BONNET_MOCK_ICMP_REACHABLE_H_ 6 #define QUICHE_QUIC_QBONE_BONNET_MOCK_ICMP_REACHABLE_H_ 7 8 #include "quiche/quic/platform/api/quic_test.h" 9 #include "quiche/quic/qbone/bonnet/icmp_reachable_interface.h" 10 11 namespace quic { 12 13 class MockIcmpReachable : public IcmpReachableInterface { 14 public: 15 MOCK_METHOD(bool, Init, (), (override)); 16 }; 17 18 } // namespace quic 19 20 #endif // QUICHE_QUIC_QBONE_BONNET_MOCK_ICMP_REACHABLE_H_ 21