blob: 88bb26f4385c3d38c725df8a6ca72a0bb41288d1 [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.
#include "shill/mock_profile.h"
#include <string>
#include <base/memory/ref_counted.h>
#include <gmock/gmock.h>
#include "shill/refptr_types.h"
namespace shill {
MockProfile::MockProfile(Manager* manager) : MockProfile(manager, "mock") {}
MockProfile::MockProfile(Manager* manager, const std::string& identifier)
: Profile(manager, Identifier(identifier), base::FilePath(), false) {}
MockProfile::~MockProfile() = default;
} // namespace shill