chromium/base/power_monitor/power_monitor_unittest.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/power_monitor/power_monitor.h"

#include <optional>

#include "base/test/power_monitor_test.h"
#include "base/test/task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base {
namespace test {

class PowerMonitorTest : public testing::Test {};

// PowerMonitorSource is tightly coupled with the PowerMonitor, so this test
// covers both classes.
TEST_F(PowerMonitorTest, PowerNotifications) {}

TEST_F(PowerMonitorTest, ThermalThrottling) {}

TEST_F(PowerMonitorTest, AddPowerSuspendObserverBeforeAndAfterInitialization) {}

TEST_F(PowerMonitorTest, AddPowerStateObserverBeforeAndAfterInitialization) {}

TEST_F(PowerMonitorTest, SuspendStateReturnedFromAddObserver) {}

TEST_F(PowerMonitorTest, PowerStateReturnedFromAddObserver) {}

}  // namespace test
}  // namespace base