LeviLamina
Loading...
Searching...
No Matches
TestSummaryDisplayer.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
10namespace gametest { class BaseGameTestInstance; }
11// clang-format on
12
13class TestSummaryDisplayer : public ::gametest::IGameTestListener {
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 TestSummaryDisplayer& operator=(TestSummaryDisplayer const&);
24 TestSummaryDisplayer(TestSummaryDisplayer const&);
25 TestSummaryDisplayer();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual void onTestPassed(::gametest::BaseGameTestInstance&) /*override*/;
31
32 virtual void onTestFailed(::gametest::BaseGameTestInstance&) /*override*/;
33
34 virtual ~TestSummaryDisplayer() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI void _say(::std::string const& text, ::std::string const& chatColor) const;
41
42 MCNAPI void _showTestSummaryIfAllDone() const;
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
49
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
MCAPI void _say(::std::string const &text, ::std::string const &chatColor) const
MCAPI void $onTestFailed(::gametest::BaseGameTestInstance &)
MCAPI void $onTestPassed(::gametest::BaseGameTestInstance &)
MCAPI void _showTestSummaryIfAllDone() const
static MCAPI void ** $vftable()
Definition BaseGameTestInstance.h:23
Definition IGameTestListener.h:12
Definition Alias.h:14