Arma Reforger Explorer
1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Toggle main menu visibility
Loading...
Searching...
No Matches
SCR_AutotestGroup.c
Go to the documentation of this file.
1
2
[
BaseContainerProps
(configRoot:
true
,
category
:
"Autotest"
)]
3
class
SCR_AutotestGroup
4
{
5
[
Attribute
()]
6
protected
ref array<ref SCR_AutotestSuiteBase>
m_aSuites
;
7
8
[
Attribute
()]
9
protected
ref array<ref SCR_AutotestGroup>
m_aGroups
;
10
11
//------------------------------------------------------------------------------------------------
13
array<ref SCR_AutotestSuiteBase>
GetSuites
(
bool
ungroupedSuitesOnly =
false
)
14
{
15
if
(ungroupedSuitesOnly)
16
return
m_aSuites
;
17
18
array<ref SCR_AutotestSuiteBase> allSuites = {};
19
foreach
(
SCR_AutotestSuiteBase
suite :
m_aSuites
)
20
{
21
allSuites.Insert(suite);
22
}
23
24
foreach
(
SCR_AutotestGroup
group :
m_aGroups
)
25
{
26
array<ref SCR_AutotestSuiteBase> groupSuites = group.GetSuites();
27
foreach
(
SCR_AutotestSuiteBase
suite : groupSuites)
28
{
29
allSuites.Insert(suite);
30
}
31
}
32
33
return
allSuites;
34
}
35
36
//------------------------------------------------------------------------------------------------
38
array<ref SCR_AutotestGroup>
GetGroups
()
39
{
40
return
m_aGroups
;
41
}
42
}
BaseContainerProps
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
Definition
SCR_AIAnimationWaypoint.c:14
category
params category
Definition
SCR_VehicleDamageManagerComponent.c:302
SCR_AutotestGroup
Collection of test suites.
Definition
SCR_AutotestGroup.c:4
SCR_AutotestGroup::GetSuites
array< ref SCR_AutotestSuiteBase > GetSuites(bool ungroupedSuitesOnly=false)
Get all test suites in this group.
Definition
SCR_AutotestGroup.c:13
SCR_AutotestGroup::GetGroups
array< ref SCR_AutotestGroup > GetGroups()
Get all test groups in this group.
Definition
SCR_AutotestGroup.c:38
SCR_AutotestGroup::m_aGroups
ref array< ref SCR_AutotestGroup > m_aGroups
Definition
SCR_AutotestGroup.c:9
SCR_AutotestGroup::m_aSuites
ref array< ref SCR_AutotestSuiteBase > m_aSuites
Definition
SCR_AutotestGroup.c:6
SCR_AutotestSuiteBase
Definition
SCR_AutotestSuiteBase.c:8
Attribute
SCR_FieldOfViewSettings Attribute
Definition
SendGoalMessage.c:170
scripts
Autotest
Game
TestFramework
SCR_AutotestGroup.c
Generated by
1.17.0