summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quiche/quic/qbone/bonnet/mock_icmp_reachable.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/quiche/quic/qbone/bonnet/mock_icmp_reachable.h')
-rw-r--r--chromium/net/third_party/quiche/src/quiche/quic/qbone/bonnet/mock_icmp_reachable.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/net/third_party/quiche/src/quiche/quic/qbone/bonnet/mock_icmp_reachable.h b/chromium/net/third_party/quiche/src/quiche/quic/qbone/bonnet/mock_icmp_reachable.h
new file mode 100644
index 00000000000..13c294fddfe
--- /dev/null
+++ b/chromium/net/third_party/quiche/src/quiche/quic/qbone/bonnet/mock_icmp_reachable.h
@@ -0,0 +1,20 @@
+// 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 "quiche/quic/platform/api/quic_test.h"
+#include "quiche/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_