LeviLamina
Loading...
Searching...
No Matches
GameTestBatch.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace gametest { class BaseGameTestFunction; }
8// clang-format on
9
10namespace gametest {
11
12class GameTestBatch {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 64, ::std::function<void()>> mBeforeBatchFunction;
17 ::ll::TypedStorage<8, 64, ::std::function<void()>> mAfterBatchFunction;
18 ::ll::TypedStorage<8, 32, ::std::string const> mName;
19 ::ll::TypedStorage<8, 24, ::std::vector<::std::shared_ptr<::gametest::BaseGameTestFunction>>> mTestFunctions;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 GameTestBatch& operator=(GameTestBatch const&);
25 GameTestBatch();
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
33
35 ::std::string name,
36 ::std::vector<::std::shared_ptr<::gametest::BaseGameTestFunction>> testFunctions,
37 ::std::function<void()> beforeBatchFunction,
38 ::std::function<void()> afterBatchFunction
39 );
40
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
48
49 MCNAPI void* $ctor(::gametest::GameTestBatch const&);
50
51 MCNAPI void* $ctor(
52 ::std::string name,
53 ::std::vector<::std::shared_ptr<::gametest::BaseGameTestFunction>> testFunctions,
54 ::std::function<void()> beforeBatchFunction,
55 ::std::function<void()> afterBatchFunction
56 );
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64};
65
66} // namespace gametest
Definition BaseGameTestFunction.h:16
Definition GameTestBatch.h:12
MCAPI void * $ctor(::std::string name, ::std::vector<::std::shared_ptr<::gametest::BaseGameTestFunction > > testFunctions, ::std::function< void()> beforeBatchFunction, ::std::function< void()> afterBatchFunction)
MCAPI GameTestBatch(::gametest::GameTestBatch &&)
MCAPI void * $ctor(::gametest::GameTestBatch &&)
MCAPI GameTestBatch(::gametest::GameTestBatch const &)
MCAPI void * $ctor(::gametest::GameTestBatch const &)
MCAPI GameTestBatch(::std::string name, ::std::vector<::std::shared_ptr<::gametest::BaseGameTestFunction > > testFunctions, ::std::function< void()> beforeBatchFunction, ::std::function< void()> afterBatchFunction)