Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FAutomationTestBase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AddExpectedMessage
(
FString ExpectedPatternString, |
Adds a regex pattern to an internal list that this test will expect to encounter in logs (of all severities) during its execution. | Misc/AutomationTest.h | |
void AddExpectedMessage
(
FString ExpectedPatternString, |
Adds a regex pattern to an internal list that this test will expect to encounter in logs (of the specified verbosity) during its execution. | Misc/AutomationTest.h |
AddExpectedMessage(FString, EAutomationExpectedMessageFlags::MatchType, int32, bool)
Description
Adds a regex pattern to an internal list that this test will expect to encounter in logs (of all severities) during its execution. If an expected pattern is not encountered, it will cause this test to fail.
| Name | AddExpectedMessage |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AutomationTest.h |
| Include Path | #include "Misc/AutomationTest.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/AutomationTest.cpp |
void AddExpectedMessage
(
FString ExpectedPatternString,
EAutomationExpectedMessageFlags::MatchType CompareType,
int32 Occurrences,
bool IsRegex
)
Parameters
| Name | Remarks |
|---|---|
| ExpectedPatternString | The expected message string. Supports basic regex patterns. |
| CompareType | How to match this string with an encountered message, should it match exactly or simply just contain the string. |
| Occurrences | How many times to expect this message string to be seen. If > 0, the message must be seen the exact number of times specified or the test will fail. If == 0, the message must be seen one or more times (with no upper limit) or the test will fail. If < 0, occurrences of this message will be silently ignored. |
| IsRegex | If the pattern is to be used as regex or plain string. Default is true. |
AddExpectedMessage(FString, ELogVerbosity::Type, EAutomationExpectedMessageFlags::MatchType, int32, bool)
Description
Adds a regex pattern to an internal list that this test will expect to encounter in logs (of the specified verbosity) during its execution. If an expected pattern is not encountered, it will cause this test to fail.
| Name | AddExpectedMessage |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AutomationTest.h |
| Include Path | #include "Misc/AutomationTest.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/AutomationTest.cpp |
void AddExpectedMessage
(
FString ExpectedPatternString,
ELogVerbosity::Type ExpectedVerbosity,
EAutomationExpectedMessageFlags::MatchType CompareType,
int32 Occurrences,
bool IsRegex
)
Parameters
| Name | Remarks |
|---|---|
| ExpectedPatternString | The expected message string. Supports basic regex patterns if IsRegex is set to true (the default). |
| ExpectedVerbosity | The expected message verbosity. This is treated as a minimum requirement, so for example the Warning level will intercept Warnings, Errors and Fatal. |
| CompareType | How to match this string with an encountered message, should it match exactly or simply just contain the string. |
| Occurrences | How many times to expect this message string to be seen. If > 0, the message must be seen the exact number of times specified or the test will fail. If == 0, the message must be seen one or more times (with no upper limit) or the test will fail. If < 0, occurrences of this message will be silently ignored. |
| IsRegex | If the pattern is to be used as regex or plain string. Default is true. |