LeviLamina
Loading...
Searching...
No Matches
DedicatedServerGameTestRunnerListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/gametest/framework/IGameTestListener.h"
7
8// auto generated forward declare list
9// clang-format off
10struct GameTestReport;
11namespace gametest { class BaseGameTestInstance; }
12namespace gametest { struct GameTestError; }
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 4
36 virtual void onTestStarted(::gametest::BaseGameTestInstance& testInstance) /*override*/;
37
38 // vIndex: 2
39 virtual void onTestPassed(::gametest::BaseGameTestInstance& testInstance) /*override*/;
40
41 // vIndex: 3
42 virtual void onTestFailed(::gametest::BaseGameTestInstance& testInstance) /*override*/;
43
44 // vIndex: 0
45 virtual ~DedicatedServerGameTestRunnerListener() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // member functions
50 // NOLINTBEGIN
52 ::GameTestReport& report,
53 ::std::unordered_set<::std::string>& failedGameTests,
54 ::std::unordered_set<::std::string>& passedGameTests
55 );
56
57 MCAPI void _addTestResult(
58 ::std::string const& testName,
59 ::std::string const& result,
60 ::std::optional<::gametest::GameTestError> error
61 );
62 // NOLINTEND
63
64public:
65 // constructor thunks
66 // NOLINTBEGIN
67 MCAPI void* $ctor(
68 ::GameTestReport& report,
69 ::std::unordered_set<::std::string>& failedGameTests,
70 ::std::unordered_set<::std::string>& passedGameTests
71 );
72 // NOLINTEND
73
74public:
75 // destructor thunk
76 // NOLINTBEGIN
77
78 // NOLINTEND
79
80public:
81 // virtual function thunks
82 // NOLINTBEGIN
83 MCAPI void $onTestStarted(::gametest::BaseGameTestInstance& testInstance);
84
85 MCAPI void $onTestPassed(::gametest::BaseGameTestInstance& testInstance);
86
87 MCAPI void $onTestFailed(::gametest::BaseGameTestInstance& testInstance);
88 // NOLINTEND
89
90public:
91 // vftables
92 // NOLINTBEGIN
93 MCAPI static void** $vftable();
94 // NOLINTEND
95};
Definition DedicatedServerGameTestRunnerListener.h:15
Definition BaseGameTestInstance.h:23
Definition IGameTestListener.h:12
Definition GameTestReport.h:10
Definition Alias.h:14