summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/qbone/bonnet/mock_tun_device_controller.h
blob: 7773111b18c845473f93b51f5fb2ca10aa3ea4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) 2020 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_TUN_DEVICE_CONTROLLER_H_
#define QUICHE_QUIC_QBONE_BONNET_MOCK_TUN_DEVICE_CONTROLLER_H_

#include "quic/platform/api/quic_test.h"
#include "quic/qbone/bonnet/tun_device_controller.h"

namespace quic {

class MockTunDeviceController : public TunDeviceController {
 public:
  MockTunDeviceController() : TunDeviceController("", true, nullptr) {}

  MOCK_METHOD(bool, UpdateAddress, (const IpRange&), (override));

  MOCK_METHOD(bool, UpdateRoutes, (const IpRange&, const std::vector<IpRange>&),
              (override));

  MOCK_METHOD(QuicIpAddress, current_address, (), (override));
};

}  // namespace quic

#endif  // QUICHE_QUIC_QBONE_BONNET_MOCK_TUN_DEVICE_CONTROLLER_H_