chromium/components/supervised_user/core/common/features_unittest.cc

// Copyright 2021 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/supervised_user/core/common/features.h"

#include "base/dcheck_is_on.h"
#include "base/feature_list.h"
#include "base/test/scoped_feature_list.h"
#include "build/branding_buildflags.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace supervised_user {

// Tests supervised user features configurations.
class FeaturesTest : public testing::Test {};

// Tests `kLocalWebApproval` feature configuration.
LocalWebApprovalsFeatureTest;

TEST_F(LocalWebApprovalsFeatureTest, LocalApprovalsDisabled) {}

void CheckIsLocalWebApprovalsEnabled() {}

TEST_F(LocalWebApprovalsFeatureTest, LocalApprovalsEnabled) {}

}  // namespace supervised_user