chromium/components/policy/core/common/command_line_policy_provider_unittest.cc

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

#include "components/policy/core/common/command_line_policy_provider.h"

#include <memory>

#include "base/values.h"
#include "build/build_config.h"
#include "components/policy/core/common/cloud/cloud_policy_client.h"
#include "components/policy/core/common/policy_bundle.h"
#include "components/policy/core/common/policy_switches.h"
#include "components/policy/core/common/policy_types.h"
#include "testing/gtest/include/gtest/gtest.h"

#if BUILDFLAG(IS_ANDROID)
#include "base/android/build_info.h"
#endif  // BUILDFLAG(IS_ANDROID)

namespace policy {

namespace {

void VerifyPolicyProvider(ConfigurationPolicyProvider* provider) {}

}  // namespace

class CommandLinePolicyProviderTest : public ::testing::Test {};

TEST_F(CommandLinePolicyProviderTest, LoadAndRefresh) {}

TEST_F(CommandLinePolicyProviderTest, Creator) {}

}  // namespace policy