chromium/chrome/test/webapps/test_data/tests_default.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#if BUILDFLAG(IS_WIN)
#define MAYBE_WAI_3Chicken_1Chicken_2ChickenGreen \
  DISABLED_WAI_3Chicken_1Chicken_2ChickenGreen
#else
#define MAYBE_WAI_3Chicken_1Chicken_2ChickenGreen \
  WAI_3Chicken_1Chicken_2ChickenGreen
#endif
IN_PROC_BROWSER_TEST_F(TestName, MAYBE_WAI_3Chicken_1Chicken_2ChickenGreen) {
  // Test contents are generated by script. Please do not modify!
  // See `docs/webapps/why-is-this-test-failing.md` or
  // `docs/webapps/integration-testing-framework` for more info.
  // Gardeners: Disabling this test is supported.
  // CheckB() is purposely split into 2 lines to test the test id can be
  // generated by generate_test_id_from_test_steps().
  helper_.StateChangeA(Animal::kChicken);
  helper_.CheckA(Animal::kChicken);
  helper_.CheckB(Animal::kChicken,
                 Color::kGreen);
}