chromium/chrome/test/webapps/test_data/expected_test_txt/tests_default_mac_win_linux.txt

IN_PROC_BROWSER_TEST_F(TestName, WAI_StateChangeBChickenGreen) {
  // 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.
  helper_.StateChangeB(AnimalLess::kChicken, Color::kGreen);
  helper_.CheckA(Animal::kChicken);
  helper_.CheckB(Animal::kChicken, Color::kGreen);
}
IN_PROC_BROWSER_TEST_F(TestName, WAI_StateChangeADog) {
  // 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.
  helper_.StateChangeA(Animal::kDog);
  helper_.CheckB(Animal::kDog, Color::kRed);
  helper_.CheckA(Animal::kChicken);
  helper_.CheckA(Animal::kDog);
}