Navigation
API > API/Developer > API/Developer/FunctionalTesting
Inheritance Hierarchy
- FAITestSpawnSetBase
- FAITestSpawnSet
References
| Module | FunctionalTesting |
| Header | /Engine/Source/Developer/FunctionalTesting/Classes/FunctionalAITest.h |
| Include | #include "FunctionalAITest.h" |
Syntax
struct FAITestSpawnSet : public FAITestSpawnSetBase
Remarks
Generic AI Test Spawn Set that is used in regular AFunctionalAITest tests.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TArray< FAITestSpawnInfo > | SpawnInfoContainer | What to spawn |
Constructors
| Type | Name | Description | |
|---|---|---|---|
Overridden from FAITestSpawnSetBase
| Type | Name | Description | |
|---|---|---|---|
| void | ForEachSpawnInfo
(
TFunctionRef< void(const FAITestSpawnInfoBase&)> Predicate |
To iterate through the spawn info container and execute Predicate on each in a const-correct way. | |
| void | ForEachSpawnInfo
(
TFunctionRef< void(FAITestSpawnInfoBase&)> Predicate |
To iterate through the spawn info container and execute Predicate on each. | |
| const FAITestSpawnInfoBase * | GetSpawnInfo
(
const int32 SpawnInfoIndex |
Return the FAITestSpawnInfoBase at this index of the SpawnInfoContainer array. | |
| FAITestSpawnInfoBase * | GetSpawnInfo
(
const int32 SpawnInfoIndex |
Return the FAITestSpawnInfoBase at this index of the SpawnInfoContainer array. | |
| bool | IsValidSpawnInfoIndex
(
const int32 Index |
Return whether the index is valid in the SpawnInfoContainer array. |