#include "chrome/browser/lookalikes/lookalike_url_navigation_throttle.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "components/lookalikes/core/safety_tip_test_utils.h"
#include "components/url_formatter/spoof_checks/idn_spoof_checker.h"
#include "components/url_formatter/url_formatter.h"
#include "content/public/test/mock_navigation_handle.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/url_features.h"
namespace lookalikes {
enum class IDNAMode { … };
class LookalikeThrottleTest : public testing::WithParamInterface<IDNAMode>,
public ChromeRenderViewHostTestHarness { … };
INSTANTIATE_TEST_SUITE_P(…);
TEST_P(LookalikeThrottleTest, SpoofsBlocked) { … }
}