1
0
forked from fsfw/fsfw

include fixes

This commit is contained in:
2020-10-29 17:22:41 +01:00
parent 56da648026
commit 567cbd39ef
7 changed files with 19 additions and 13 deletions

View File

@ -1,7 +1,7 @@
#ifndef FRAMEWORK_TEST_UNITTESTCLASS_H_
#define FRAMEWORK_TEST_UNITTESTCLASS_H_
#include <unittest/internal/UnittDefinitions.h>
#include "UnittDefinitions.h"
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
/**
@ -22,7 +22,7 @@ public:
* Some function which calls all other tests
* @return
*/
ReturnValue_t performTests();
virtual ReturnValue_t performTests();
};