Navigation
API > API/Plugins > API/Plugins/AutomationTestToolset > API/Plugins/AutomationTestToolset/UAutomationTestToolset
Description
List available automation tests. Requires DiscoverTests() to have completed. Returns a JSON object: {"tests": ["path1", ...], "total": N, "returned": N}.
| Name | ListTests |
| Type | function |
| Header File | /Engine/Plugins/Experimental/Toolsets/AutomationTestToolset/Source/AutomationTestToolset/Public/AutomationTestToolset.h |
| Include Path | #include "AutomationTestToolset.h" |
| Source | /Engine/Plugins/Experimental/Toolsets/AutomationTestToolset/Source/AutomationTestToolset/Private/AutomationTestToolset.cpp |
UFUNCTION (Meta=(AICallable), Category="AutomationTestToolset")
static FString ListTests
(
const FString & NameFilter,
const FString & TagFilter,
int32 Limit
)
Parameters
| Name | Remarks |
|---|---|
| NameFilter | Optional substring filter applied to the test's full path. |
| TagFilter | Optional substring filter applied to the test's tags. |
| Limit | Maximum number of tests to return (0 = unlimited, default 200). |