#include "content/browser/cookie_deprecation_label/cookie_deprecation_label_manager_impl.h"
#include "base/test/scoped_feature_list.h"
#include "content/browser/cookie_deprecation_label/cookie_deprecation_label_test_utils.h"
#include "content/public/common/content_features.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "content/public/test/test_utils.h"
#include "content/test/test_content_browser_client.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
namespace {
class CookieDeprecationLabelManagerImplTest : public testing::Test { … };
TEST_F(CookieDeprecationLabelManagerImplTest, NotAllowed_NoLabelReturned) { … }
TEST_F(CookieDeprecationLabelManagerImplTest, Allowed_LabelReturned) { … }
TEST_F(CookieDeprecationLabelManagerImplTest,
NotAllowedForContext_NoLabelReturned) { … }
TEST_F(CookieDeprecationLabelManagerImplTest, AllowedForContext_LabelReturned) { … }
}
}