blob: 02f364c13769b95c392e749d970aac742eac6382 [file] [log] [blame]
// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef QUICHE_QUIC_QBONE_BONNET_MOCK_ICMP_REACHABLE_H_
#define QUICHE_QUIC_QBONE_BONNET_MOCK_ICMP_REACHABLE_H_
#include "quic/platform/api/quic_test.h"
#include "quic/qbone/bonnet/icmp_reachable_interface.h"
namespace quic {
class MockIcmpReachable : public IcmpReachableInterface {
public:
MOCK_METHOD(bool, Init, (), (override));
};
} // namespace quic
#endif // QUICHE_QUIC_QBONE_BONNET_MOCK_ICMP_REACHABLE_H_