Navigation
API > API/Runtime > API/Runtime/Core
Simple class to store the results of the execution of a automation test
| Name | FAutomationTestExecutionInfo |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AutomationTest.h |
| Include Path | #include "Misc/AutomationTest.h" |
Syntax
class FAutomationTestExecutionInfo
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FAutomationTestExecutionInfo() |
Constructor | Misc/AutomationTest.h |
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
~FAutomationTestExecutionInfo() |
Destructor | Misc/AutomationTest.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| AnalyticsItems | TArray< FString > | Any analytics items that occurred during execution | Misc/AutomationTest.h | |
| bSuccessful | bool | Whether the automation test completed successfully or not | Misc/AutomationTest.h | |
| Duration | double | Time to complete the task | Misc/AutomationTest.h | |
| TelemetryItems | TArray< FAutomationTelemetryData > | Telemetry items that occurred during execution | Misc/AutomationTest.h | |
| TelemetryStorage | FString | Telemetry storage name set by the test | Misc/AutomationTest.h |
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| ContextStack | TArray< FString > | Misc/AutomationTest.h | ||
| Entries | TArray< FAutomationExecutionEntry > | Any errors that occurred during execution | Misc/AutomationTest.h | |
| Errors | int32 | Misc/AutomationTest.h | ||
| Warnings | int32 | Misc/AutomationTest.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AddError
(
const FString& ErrorMessage |
Misc/AutomationTest.h | ||
void AddEvent
(
const FAutomationEvent& Event, |
Misc/AutomationTest.h | ||
void AddWarning
(
const FString& WarningMessage |
Misc/AutomationTest.h | ||
void Clear() |
Helper method to clear out the results from a previous execution | Misc/AutomationTest.h | |
const FString & GetContext() |
Misc/AutomationTest.h | ||
const TArray< FAutomationExecutionEntry > & GetEntries() |
Any errors that occurred during execution | Misc/AutomationTest.h | |
int32 GetErrorTotal() |
Misc/AutomationTest.h | ||
int32 GetWarningTotal() |
Misc/AutomationTest.h | ||
void PopContext() |
Misc/AutomationTest.h | ||
void PushContext
(
const FString& Context |
Misc/AutomationTest.h | ||
int32 RemoveAllEvents
(
EAutomationEventType EventType |
Misc/AutomationTest.h | ||
int32 RemoveAllEvents
(
TFunctionRef< bool(FAutomationEvent&)> FilterPredicate |
Misc/AutomationTest.h |