1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef UPDATE_ENGINE_MOCK_POWER_MANAGER_H_
- #define UPDATE_ENGINE_MOCK_POWER_MANAGER_H_
- #include <gmock/gmock.h>
- #include "update_engine/power_manager_interface.h"
- namespace chromeos_update_engine {
- class MockPowerManager : public PowerManagerInterface {
- public:
- MockPowerManager() = default;
- MOCK_METHOD0(RequestReboot, bool(void));
- };
- }
- #endif
|