зеркало из https://github.com/DeGsoft/maui-linux.git
65 строки
2.8 KiB
C#
65 строки
2.8 KiB
C#
namespace System.Maui.Core.UITests
|
|
{
|
|
internal static class UITestCategories
|
|
{
|
|
public const string ViewBaseTests = "ViewBaseTests";
|
|
public const string ActionSheet = "ActionSheet";
|
|
public const string ActivityIndicator = "ActivityIndicator";
|
|
public const string Animation = "Animation";
|
|
public const string AutomationId = "AutomationID";
|
|
public const string BoxView = "BoxView";
|
|
public const string Button = "Button";
|
|
public const string CarouselView = "CarouselView";
|
|
public const string Cells = "Cells";
|
|
public const string CheckBox = "CheckBox";
|
|
public const string CollectionView = "CollectionView";
|
|
public const string ContextActions = "ContextActions";
|
|
public const string DatePicker = "DatePicker";
|
|
public const string DisplayAlert = "DisplayAlert";
|
|
public const string Editor = "Editor";
|
|
public const string Entry = "Entry";
|
|
public const string ExpanderView = "ExpanderView";
|
|
public const string Frame = "Frame";
|
|
public const string Image = "Image";
|
|
public const string ImageButton = "ImageButton";
|
|
public const string Label = "Label";
|
|
public const string Layout = "Layout";
|
|
public const string ListView = "ListView";
|
|
public const string UwpIgnore = "UwpIgnore";
|
|
public const string LifeCycle = "Lifecycle";
|
|
public const string MasterDetailPage = "MasterDetailPage";
|
|
public const string Picker = "Picker";
|
|
public const string ProgressBar = "ProgressBar";
|
|
public const string RootGallery = "RootGallery";
|
|
public const string ScrollView = "ScrollView";
|
|
public const string SearchBar = "SearchBar";
|
|
public const string Slider = "Slider";
|
|
public const string Stepper = "Stepper";
|
|
public const string Switch = "Switch";
|
|
public const string SwipeView = "SwipeView";
|
|
public const string TableView = "TableView";
|
|
public const string TimePicker = "TimePicker";
|
|
public const string ToolbarItem = "ToolbarItem";
|
|
public const string WebView = "WebView";
|
|
public const string Maps = "Maps";
|
|
public const string InputTransparent = "InputTransparent";
|
|
public const string IsEnabled = "IsEnabled";
|
|
public const string Gestures = "Gestures";
|
|
public const string Navigation = "Navigation";
|
|
public const string Effects = "Effects";
|
|
public const string Focus = "Focus";
|
|
public const string ManualReview = "ManualReview";
|
|
public const string Performance = "Performance";
|
|
public const string Visual = "Visual";
|
|
public const string AppLinks = "AppLinks";
|
|
public const string Shell = "Shell";
|
|
public const string TabbedPage = "TabbedPage";
|
|
public const string CustomRenderers = "CustomRenderers";
|
|
public const string Page = "Page";
|
|
public const string RefreshView = "RefreshView";
|
|
public const string TitleView = "TitleView";
|
|
public const string DisplayPrompt = "DisplayPrompt";
|
|
public const string IndicatorView = "IndicatorView";
|
|
}
|
|
}
|