blob: 3170b7ed4b1c99cce45442174c9db8a7be2eaab2 [file] [log] [blame]
wubf975eac2019-08-19 19:41:01 -07001// 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_MOCK_QBONE_CLIENT_H_
6#define QUICHE_QUIC_QBONE_MOCK_QBONE_CLIENT_H_
7
8#include "net/third_party/quiche/src/quic/platform/api/quic_test.h"
9#include "net/third_party/quiche/src/quic/qbone/qbone_client_interface.h"
dmcardled70b99e2019-12-12 09:52:39 -080010#include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h"
wubf975eac2019-08-19 19:41:01 -070011
12namespace quic {
13
14class MockQboneClient : public QboneClientInterface {
15 public:
wub713afae2020-04-27 07:48:31 -070016 MOCK_METHOD(void,
17 ProcessPacketFromNetwork,
18 (quiche::QuicheStringPiece packet),
19 (override));
wubf975eac2019-08-19 19:41:01 -070020};
21
22} // namespace quic
23
24#endif // QUICHE_QUIC_QBONE_MOCK_QBONE_CLIENT_H_