// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/test/flakiness_test_util.h" // Create a "real" subclass just to more accurately mimic what most test // suites would do. class FlakinessTestUtilTest : public testing::Test { … }; // Since we're not really exercising flakiness (just compilation), we only // instantiate a single test run. INSTANTIATE_FLAKINESS_TEST(…); // This test exercises the output from the INSTANTIATE_FLAKINESS_TEST macro. TEST_P(FLAKINESS_TEST_NAME(FlakinessTestUtilTest), FlakinessTest) { … }