fsfw/unittest/internal/InternalUnitTester.cpp

32 lines
727 B
C++
Raw Normal View History

2020-10-29 17:22:41 +01:00
#include "InternalUnitTester.h"
#include "UnittDefinitions.h"
#include "osal/IntTestMq.h"
#include "osal/IntTestSemaphore.h"
#include "osal/IntTestMutex.h"
#include "serialize/IntTestSerialization.h"
2020-10-20 17:11:23 +02:00
#include <cstdlib>
InternalUnitTester::InternalUnitTester() {}
InternalUnitTester::~InternalUnitTester() {}
ReturnValue_t InternalUnitTester::performTests() {
#if CPP_OSTREAM_ENABLED == 1
2020-10-29 12:23:27 +01:00
sif::info << "Running internal unit tests.." << std::endl;
#endif
2020-10-20 17:11:23 +02:00
testserialize::test_serialization();
testmq::testMq();
testsemaph::testBinSemaph();
testsemaph::testCountingSemaph();
testmutex::testMutex();
#if CPP_OSTREAM_ENABLED == 1
2020-10-29 12:23:27 +01:00
sif::info << "Internal unit tests finished." << std::endl;
#endif
2020-10-20 17:11:23 +02:00
return RETURN_OK;
}