blob: c7434cf75e7f06b1224477afece9d62f7bf427c6 [file] [log] [blame]
// Copyright 2018 The Chromium OS 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 SHILL_MOCK_PORTAL_DETECTOR_H_
#define SHILL_MOCK_PORTAL_DETECTOR_H_
#include <string>
#include <base/macros.h>
#include <gmock/gmock.h>
#include "shill/portal_detector.h"
namespace shill {
class MockPortalDetector : public PortalDetector {
public:
explicit MockPortalDetector(ConnectionRefPtr connection);
MockPortalDetector(const MockPortalDetector&) = delete;
MockPortalDetector& operator=(const MockPortalDetector&) = delete;
~MockPortalDetector() override;
MOCK_METHOD(bool,
StartAfterDelay,
(const PortalDetector::Properties&, int),
(override));
MOCK_METHOD(void, Stop, (), (override));
MOCK_METHOD(bool, IsInProgress, (), (override));
MOCK_METHOD(int, AdjustStartDelay, (int), (override));
};
} // namespace shill
#endif // SHILL_MOCK_PORTAL_DETECTOR_H_