Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FAutomationTestBase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void GetExpectedMessages
(
TArray< FAutomationExpectedMessage >& OutInfo, |
Populate the provided expected log messages object with the expected messages contained within the test. | Misc/AutomationTest.h | |
void GetExpectedMessages
(
TArray< FAutomationExpectedMessage >& OutInfo, |
Populate the provided expected log messages object with the expected messages contained within the test. | Misc/AutomationTest.h |
GetExpectedMessages(TArray< FAutomationExpectedMessage > &, ELogVerbosity::Type)
Description
Populate the provided expected log messages object with the expected messages contained within the test. Not particularly efficient, but providing direct access to the test's private execution messages list could result in errors.
This will not include any messages that are supposed to be suppressed
| Name | GetExpectedMessages |
| 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 GetExpectedMessages
(
TArray < FAutomationExpectedMessage > & OutInfo,
ELogVerbosity::Type Verbosity
) const
Parameters
| Name | Remarks |
|---|---|
| OutInfo | Array of Expected Messages to be populated with the same data contained within this test's expected messages list |
| Verbosity | Optionally filter the returned messages by verbosity. This is inclusive, so Warning will return Warnings, Errors, etc. |
GetExpectedMessages(TArray< FAutomationExpectedMessage > &, bool, ELogVerbosity::Type)
Description
Populate the provided expected log messages object with the expected messages contained within the test. Not particularly efficient, but providing direct access to the test's private execution messages list could result in errors.
| Name | GetExpectedMessages |
| 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 GetExpectedMessages
(
TArray < FAutomationExpectedMessage > & OutInfo,
bool IncludeSuppressed,
ELogVerbosity::Type Verbosity
) const
Parameters
| Name | Remarks |
|---|---|
| OutInfo | Array of Expected Messages to be populated with the same data contained within this test's expected messages list |
| IncludeSuppressed | Include the expected errors that have been marked as being suppressed. |
| Verbosity | Optionally filter the returned messages by verbosity. This is inclusive, so Warning will return Warnings, Errors, etc. |