UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
AutomationState.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "UObject/Class.h"
7#include "UObject/Class.h"
8
9#include "AutomationState.generated.h"
10
11
13UENUM()
15{
16 NotRun, // Automation test was not run
17 InProcess, // Automation test is running now
18 Fail, // Automation test was run and failed
19 Success, // Automation test was run and succeeded
20 Skipped, // Automation test was skipped
21};
22
23
EAutomationState
Definition AutomationState.h:15
const FString AutomationStateToString(EAutomationState InValue)
Definition AutomationState.h:24
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UENUM(...)
Definition ObjectMacros.h:749
uint8_t uint8
Definition binka_ue_file_header.h:8
CORE_API const FString & ToString() const
Definition Text.cpp:1263
static FText GetDisplayValueAsText(const TCHAR *EnumPath, const T EnumeratorValue)
Definition Class.h:3206