fsfw/tests/src/fsfw_tests/internal/InternalUnitTester.h

35 lines
954 B
C
Raw Normal View History

2020-10-20 17:11:23 +02:00
#ifndef FRAMEWORK_TEST_UNITTESTCLASS_H_
#define FRAMEWORK_TEST_UNITTESTCLASS_H_
2020-10-29 17:22:41 +01:00
#include "UnittDefinitions.h"
2021-07-14 10:22:58 +02:00
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
2020-10-20 17:11:23 +02:00
2021-01-15 17:06:05 +01:00
2020-10-20 17:11:23 +02:00
/**
* @brief Can be used for internal testing, for example for hardware specific
* tests which can not be run on a host-machine.
*
* TODO: A lot of ways to improve this class. A way for tests to subscribe
* in this central class would be nice. Right now, this is the class
* which simply calls all other tests from other files manually.
* Maybe there is a better way..
*/
class InternalUnitTester: public HasReturnvaluesIF {
public:
2021-01-15 17:06:05 +01:00
struct TestConfig {
2021-07-14 10:22:58 +02:00
bool testArrayPrinter = false;
2021-01-15 17:06:05 +01:00
};
2020-10-20 17:11:23 +02:00
InternalUnitTester();
virtual~ InternalUnitTester();
/**
* Some function which calls all other tests
* @return
*/
2021-07-14 10:22:58 +02:00
virtual ReturnValue_t performTests(const struct InternalUnitTester::TestConfig& testConfig);
2020-10-20 17:11:23 +02:00
};
#endif /* FRAMEWORK_TEST_UNITTESTCLASS_H_ */