1// Copyright 2018 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5/// The name of the route containing the test suite. 6const String selectionControlsRoute = 'controls'; 7 8/// The string supplied to the [ValueKey] for the enabled checkbox. 9const String checkboxKeyValue = 'SelectionControls#Checkbox1'; 10 11/// The string supplied to the [ValueKey] for the disabled checkbox. 12const String disabledCheckboxKeyValue = 'SelectionControls#Checkbox2'; 13 14/// The string supplied to the [ValueKey] for the radio button with value 1. 15const String radio1KeyValue = 'SelectionControls#Radio1'; 16 17/// The string supplied to the [ValueKey] for the radio button with value 2. 18const String radio2KeyValue = 'SelectionControls#Radio2'; 19 20/// The string supplied to the [ValueKey] for the radio button with value 3. 21const String radio3KeyValue = 'SelectionControls#Radio3'; 22 23/// The string supplied to the [ValueKey] for the switch. 24const String switchKeyValue = 'SelectionControls#Switch1'; 25 26/// The string supplied to the [ValueKey] for the labeled switch. 27const String labeledSwitchKeyValue = 'SelectionControls#Switch2'; 28 29/// The label of the labeled switch. 30const String switchLabel = 'Label'; 31