chromium/chrome/browser/performance_manager/user_tuning/memory_saver_policy_handler_unittest.cc

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

#include "chrome/browser/performance_manager/public/user_tuning/memory_saver_policy_handler.h"

#include "components/performance_manager/public/user_tuning/prefs.h"
#include "components/policy/core/browser/configuration_policy_pref_store.h"
#include "components/policy/core/browser/configuration_policy_pref_store_test.h"
#include "components/policy/policy_constants.h"

namespace performance_manager {

class MemorySaverPolicyHandlerTest
    : public policy::ConfigurationPolicyPrefStoreTest {};

TEST_F(MemorySaverPolicyHandlerTest, PolicyNotSet) {}

TEST_F(MemorySaverPolicyHandlerTest, PolicySetToFalseSetsPrefToDisabled) {}

TEST_F(MemorySaverPolicyHandlerTest, PolicySetToTrueSetsPrefToEnabledOnTimer) {}

}  // namespace performance_manager