forked from dotnet/maui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestCategory.cs
More file actions
58 lines (58 loc) · 2.46 KB
/
TestCategory.cs
File metadata and controls
58 lines (58 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
namespace Microsoft.Maui.DeviceTests
{
public static class TestCategory
{
public const string Accessibility = "Accessibility";
public const string Application = "Application";
public const string Behavior = "Behavior";
public const string Border = "Border";
public const string BoxView = "BoxView";
public const string Button = "Button";
public const string CarouselView = "CarouselView";
public const string CheckBox = "CheckBox";
public const string CollectionView = "CollectionView";
public const string Compatibility = "Compatibility";
public const string ContentView = "ContentView";
public const string DatePicker = nameof(DatePicker);
public const string Dispatcher = "Dispatcher";
public const string Editor = "Editor";
public const string Element = "Element";
public const string Entry = "Entry";
public const string FlexLayout = "FlexLayout";
public const string FlyoutPage = "FlyoutPage";
public const string Frame = "Frame";
public const string Gesture = "Gesture";
public const string HybridWebView = "HybridWebView";
public const string Image = "Image";
public const string Label = "Label";
public const string Layout = "Layout";
public const string Lifecycle = nameof(Lifecycle);
public const string ListView = "ListView";
public const string MenuFlyout = nameof(MenuFlyout);
public const string Mapper = nameof(Mapper);
public const string Memory = nameof(Memory);
public const string Modal = "Modal";
public const string NavigationPage = "NavigationPage";
public const string Page = "Page";
public const string Path = "Path";
public const string Picker = "Picker";
public const string RadioButton = "RadioButton";
public const string RefreshView = "RefreshView";
public const string ScrollView = "ScrollView";
public const string SearchBar = "SearchBar";
public const string Shape = "Shape";
public const string Shell = "Shell";
public const string SwipeView = "SwipeView";
public const string TabbedPage = "TabbedPage";
public const string TextInput = "TextInput";
public const string Toolbar = "Toolbar";
public const string TemplatedView = "TemplatedView";
public const string View = "View";
public const string VisualElement = "VisualElement";
public const string VisualElementTree = "VisualElementTree";
public const string WebView = "WebView";
public const string Window = "Window";
public const string WindowOverlay = "WindowOverlay";
public const string Xaml = nameof(Xaml);
}
}