Navigation
API > API/Runtime > API/Runtime/Core
Flags for specifying automation test requirements/behavior Update GetTestFlagsMap when updating this enum.
| Name | EAutomationTestFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AutomationTest.h |
| Include Path | #include "Misc/AutomationTest.h" |
Syntax
enum EAutomationTestFlags
{
None = 0x00000000,
EditorContext = 0x00000001,
ClientContext = 0x00000002,
ServerContext = 0x00000004,
CommandletContext = 0x00000008,
ProgramContext = 0x00000010,
NonNullRHI = 0x00000100,
RequiresUser = 0x00000200,
Disabled = 0x00010000,
SupportsAutoRTFM = 0x00020000,
CriticalPriority = 0x00100000,
HighPriority = 0x00200000,
MediumPriority = 0x00400000,
LowPriority = 0x00800000,
SmokeFilter = 0x01000000,
EngineFilter = 0x02000000,
ProductFilter = 0x04000000,
PerfFilter = 0x08000000,
StressFilter = 0x10000000,
NegativeFilter = 0x20000000,
}
Values
| Name | Remarks |
|---|---|
| None | |
| EditorContext | Test is suitable for running within the editor. |
| ClientContext | Test is suitable for running within the client. |
| ServerContext | Test is suitable for running within the server. |
| CommandletContext | Test is suitable for running within a commandlet. |
| ProgramContext | Test is suitable for running within program application (not editor, nor game) |
| NonNullRHI | Test requires a non-null RHI to run correctly. |
| RequiresUser | Test requires a user instigated session. |
| Disabled | Fast disable: turns off a test without commenting code out. Never returns for a filter. |
| SupportsAutoRTFM | When AutoRTFM is enabled, the test will be executed within a transaction that commits, and within another transaction that aborts. |
| CriticalPriority | The highest priority possible. Showstopper/blocker. |
| HighPriority | High priority. Major feature functionality etc. |
| MediumPriority | Medium Priority. Minor feature functionality, major generic content issues. |
| LowPriority | Low Priority. Minor content bugs. String errors. Etc. |
| SmokeFilter | Super Fast Filter. |
| EngineFilter | Engine Level Test. |
| ProductFilter | Product Level Test. |
| PerfFilter | Performance Test. |
| StressFilter | Stress Test. |
| NegativeFilter | Negative Test. For tests whose correct expected outcome is failure. |