[NUI] Rebase develnui (DevelNUI only patches --> master) (#3910)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Devel.Tests.Ubuntu / nunit.framework / Internal / PropertyNames.cs
1 // ***********************************************************************
2 // Copyright (c) 2010 Charlie Poole
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 // 
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 // 
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 // ***********************************************************************
23 #define PORTABLE
24 #define TIZEN
25 #define NUNIT_FRAMEWORK
26 #define NUNITLITE
27 #define NET_4_5
28 #define PARALLEL
29 using System;
30
31 namespace NUnit.Framework.Internal
32 {
33     /// <summary>
34     /// The PropertyNames class provides static constants for the
35     /// standard property ids that NUnit uses on tests.
36     /// </summary>
37     public class PropertyNames
38     {
39         #region Internal Properties
40
41         /// <summary>
42         /// The FriendlyName of the AppDomain in which the assembly is running
43         /// </summary>
44         public const string AppDomain = "_APPDOMAIN";
45
46         /// <summary>
47         /// The selected strategy for joining parameter data into test cases
48         /// </summary>
49         public const string JoinType = "_JOINTYPE";
50
51         /// <summary>
52         /// The process ID of the executing assembly
53         /// </summary>
54         public const string ProcessID = "_PID";
55
56         /// <summary>
57         /// The stack trace from any data provider that threw
58         /// an exception.
59         /// </summary>
60         public const string ProviderStackTrace = "_PROVIDERSTACKTRACE";
61
62         /// <summary>
63         /// The reason a test was not run
64         /// </summary>
65         public const string SkipReason = "_SKIPREASON";
66
67         #endregion
68
69         #region Standard Properties
70
71         /// <summary>
72         /// The author of the tests
73         /// </summary>
74         public const string Author = "Author";
75
76         /// <summary>
77         /// The ApartmentState required for running the test
78         /// </summary>
79         public const string ApartmentState = "ApartmentState";
80
81         /// <summary>
82         /// The categories applying to a test
83         /// </summary>
84         public const string Category = "Category";
85
86         /// <summary>
87         /// The Description of a test
88         /// </summary>
89         public const string Description = "Description";
90
91         /// <summary>
92         /// The number of threads to be used in running tests
93         /// </summary>
94         public const string LevelOfParallelism = "LevelOfParallelism";
95
96         /// <summary>
97         /// The maximum time in ms, above which the test is considered to have failed
98         /// </summary>
99         public const string MaxTime = "MaxTime";
100
101         /// <summary>
102         /// The ParallelScope associated with a test
103         /// </summary>
104         public const string ParallelScope = "ParallelScope";
105
106         /// <summary>
107         /// The number of times the test should be repeated
108         /// </summary>
109         public const string RepeatCount = "Repeat";
110
111         /// <summary>
112         /// Indicates that the test should be run on a separate thread
113         /// </summary>
114         public const string RequiresThread = "RequiresThread";
115
116         /// <summary>
117         /// The culture to be set for a test
118         /// </summary>
119         public const string SetCulture = "SetCulture";
120
121         /// <summary>
122         /// The UI culture to be set for a test
123         /// </summary>
124         public const string SetUICulture = "SetUICulture";
125
126         /// <summary>
127         /// The type that is under test
128         /// </summary>
129         public const string TestOf = "TestOf";
130
131         /// <summary>
132         /// The timeout value for the test
133         /// </summary>
134         public const string Timeout = "Timeout";
135
136         /// <summary>
137         /// The test will be ignored until the given date
138         /// </summary>
139         public const string IgnoreUntilDate = "IgnoreUntilDate";
140
141         /// <summary>
142         /// The optional Order the test will run in
143         /// </summary>
144         public const string Order = "Order";
145         #endregion
146     }
147 }