blob: 09d99f65654d6f9ec3f4c09cef14dc8429a2e408 [file] [log] [blame]
// Copyright 2014 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 APMANAGER_MOCK_SERVICE_H_
#define APMANAGER_MOCK_SERVICE_H_
#include <base/macros.h>
#include <gmock/gmock.h>
#include "apmanager/service.h"
namespace apmanager {
class MockService : public Service {
public:
MockService();
~MockService() override;
private:
DISALLOW_COPY_AND_ASSIGN(MockService);
};
} // namespace apmanager
#endif // APMANAGER_MOCK_SERVICE_H_