Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FAutomationTestFramework
Description
Register a automation test into the framework. The automation test may or may not be necessarily valid for the particular application configuration, but that will be determined when tests are attempted to be run.
| Name | RegisterAutomationTest |
| 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 |
bool RegisterAutomationTest
(
const FString & InTestNameToRegister,
FAutomationTestBase * InTestToRegister
)
true if the test was successfully registered; false if a test was already registered under the same name as before
Parameters
| Name | Remarks |
|---|---|
| InTestNameToRegister | Name of the test being registered |
| InTestToRegister | Actual test to register |