#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include "components/variations/service/ui_string_overrider.h"
#include <stddef.h>
#include <stdint.h>
#include <array>
#include "testing/gtest/include/gtest/gtest.h"
namespace variations {
namespace {
constexpr size_t kNumResources = …;
constexpr auto kResourceHashes = …;
constexpr auto kResourceIndices = …;
}
class UIStringOverriderTest : public ::testing::Test { … };
TEST_F(UIStringOverriderTest, LookupNotFound) { … }
TEST_F(UIStringOverriderTest, LookupFound) { … }
}