blob: 0a089ea955cb9647b248c27f682ec5961a1bac62 [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:
dmcardled70b99e2019-12-12 09:52:39 -080016 MOCK_METHOD1(ProcessPacketFromNetwork,
17 void(quiche::QuicheStringPiece packet));
wubf975eac2019-08-19 19:41:01 -070018};
19
20} // namespace quic
21
22#endif // QUICHE_QUIC_QBONE_MOCK_QBONE_CLIENT_H_