Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
MockTestBase.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_DFF_UNIT_TEST_HELPER_MOCKTESTBASE_H
4#define IMT_BASE_DFF_UNIT_TEST_HELPER_MOCKTESTBASE_H
5
21
22using ::imt::base::dff::runtime::mock::RuntimeMock;
23
24using namespace System;
25using namespace System::Text;
26using namespace Microsoft::VisualStudio::TestTools::UnitTesting;
27
28namespace unitTestHelper {
29
34[TestClass]
35public ref class MockTestBase : public TestBase {
36private:
37
38 RuntimeMock* m_pRuntimeMock {nullptr};
39
40public:
41
47 [AssemblyInitialize]
48 static void baseAssemblySetUp(TestContext ^ context) {
50 }
51
55 [TestInitialize]
56 void baseSetUp() {
58
59 m_pRuntimeMock = new RuntimeMock {};
60
63 }
64
68 [TestCleanup]
69 void baseTearDown() {
71 delete m_pRuntimeMock;
72
73 Assert::IsFalse(::imt::base::core::diagnostics::test::MemoryLeakDetector::hasMemoryLeak(), _T("Memory leak detected!"));
74 }
75
79 [AssemblyCleanup]
80 static void baseAssemblyTearDown() {
82 }
83
84protected:
85
90 virtual void assertNoMessagesSent() {
91 // implement in actual test
92 }
93
100 // arrange
101 Assert::AreEqual<uint32_t>(0, TestAssertActionHandler::getAssertDebugCount());
102
103 // act
104 ActivePartHelper::sendSignal(pChannelIn, protocolId);
105
106 // assert
107 Assert::AreEqual<uint32_t>(1, TestAssertActionHandler::getAssertDebugCount());
109 }
110
116 // arrange
117 Assert::AreEqual<uint32_t>(0, TestAssertActionHandler::getAssertDebugCount());
119 timerEvent.setTimerIdentifier(static_cast<::imt::base::dff::runtime::RuntimeTimer::TimerHandle>(::imt::base::dff::runtime::TIMEPOOL_SIZE - 1U));
120
121 // act
123
124 // assert
125 Assert::AreEqual<uint32_t>(0, TestAssertActionHandler::getAssertDebugCount());
127 }
128};
129
130} // namespace unitTestHelper
131
132#endif // IMT_BASE_DFF_UNIT_TEST_HELPER_MOCKTESTBASE_H
static bool hasMemoryLeak()
Stops memory leak detection.
static void startDetection()
Starts memory leak detection.
Mocking input channel for unit test which allows to pass data to the input port.
static constexpr uint16_t TIMER
RuntimeTimer Timer.
Event arguments which are passed when a timer is fired.
void setTimerIdentifier(RuntimeTimer::TimerHandle const timerHandle)
Set the timer handle identifier which can be serialized.
int16_t TimerHandle
A TimerHandle is used to identify a timer with a unique number.
static void sendMessage(::imt::base::dff::activeparts::test::ChannelMockIn *const pChannelIn, uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const &pMessage)
Sends a single message over the channelIn.
static void sendSignal(::imt::base::dff::activeparts::test::ChannelMockIn *const pChannelIn, uint16_t const protocolIdentifier)
Sends a signal over the channelIn.
Base class for all UnitTests which use the mocking infrastructure.
static void baseAssemblyTearDown()
Test assembly cleanup.
void assertUnexpectedMessage(::imt::base::dff::activeparts::test::ChannelMockIn *pChannelIn, uint16_t protocolId)
Asserts that a debug assertion is triggered on the given message.
void assertUnexpectedTimer(::imt::base::dff::activeparts::test::ChannelMockIn *pChannelIn)
Asserts that a debug assertion is triggered on a timer event.
void baseTearDown()
Tear down test.
void baseSetUp()
Setup test.
static void baseAssemblySetUp(TestContext ^ context)
Setup assembly.
virtual void assertNoMessagesSent()
Asserts that no messages have been sent on any channel.
static uint32_t getAssertDebugCount()
Returns the number of asserts occured.
static void initAssertHandling()
Initializes the assertion handling.
Test base class.
Definition TestBase.h:16
virtual void testBaseSetUp()
Setup test.
Definition TestBase.h:29
static void testBaseAssemblyTearDown()
Tear down test assembly.
Definition TestBase.h:40
virtual void testBaseTearDown()
Tear down test.
Definition TestBase.h:34
static void testBaseAssemblySetUp()
Setup test assembly.
Definition TestBase.h:23
unsigned __int16 uint16_t
Definition stdint.h:63