// Copyright 2022 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/enterprise/idle/action.h" #include "build/build_config.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" namespace enterprise_idle { // TODO(crbug.com/40222234): Enable this when Android supports >1 Action. #if !BUILDFLAG(IS_ANDROID) TEST(IdleActionTest, Build) { … } #endif // !BUILDFLAG(IS_ANDROID) TEST(IdleActionTest, ClearBrowsingDataIsSingleAction) { … } } // namespace enterprise_idle