#include "third_party/blink/public/common/interest_group/test/interest_group_test_utils.h"
#include "build/build_config.h"
#include "build/buildflag.h"
#include "testing/gtest/include/gtest/gtest-spi.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/interest_group/test_interest_group_builder.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace {
constexpr char kTestOriginName[] = …;
constexpr char kTestGroupName[] = …;
#if BUILDFLAG(IS_WIN)
#define MAYBE_InterestGroupTestUtilsTest …
#else
#define MAYBE_InterestGroupTestUtilsTest …
#endif
class MAYBE_InterestGroupTestUtilsTest : public testing::Test { … };
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareSimple) { … }
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareOptional) { … }
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareOptionalVector) { … }
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareOptionalMap) { … }
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareSizeMismatchVector) { … }
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareSizeMismatchMap) { … }
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareElementVector) { … }
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareElementMap) { … }
TEST_F(MAYBE_InterestGroupTestUtilsTest, CompareDeep) { … }
}