#include "components/policy/core/common/schema_registry_tracking_policy_provider.h"
#include <memory>
#include <string>
#include <utility>
#include "base/types/expected_macros.h"
#include "base/values.h"
#include "components/policy/core/common/mock_configuration_policy_provider.h"
#include "components/policy/core/common/policy_bundle.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/core/common/schema.h"
#include "components/policy/core/common/schema_registry.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
Mock;
Return;
_;
namespace policy {
namespace {
constexpr auto test_reason = …;
const char kTestSchema[] = …;
}
class SchemaRegistryTrackingPolicyProviderTest : public testing::Test { … };
TEST_F(SchemaRegistryTrackingPolicyProviderTest, Empty) { … }
TEST_F(SchemaRegistryTrackingPolicyProviderTest, PassOnChromePolicy) { … }
TEST_F(SchemaRegistryTrackingPolicyProviderTest, RefreshPolicies) { … }
TEST_F(SchemaRegistryTrackingPolicyProviderTest, SchemaReady) { … }
TEST_F(SchemaRegistryTrackingPolicyProviderTest, SchemaReadyWithComponents) { … }
TEST_F(SchemaRegistryTrackingPolicyProviderTest, DelegateUpdates) { … }
TEST_F(SchemaRegistryTrackingPolicyProviderTest, RemoveAndAddComponent) { … }
}