fsfw/src/fsfw_tests/internal/osal/testSemaphore.h

14 lines
442 B
C++

#ifndef UNITTEST_INTERNAL_INTTESTSEMAPHORE_H_
#define UNITTEST_INTERNAL_INTTESTSEMAPHORE_H_
class SemaphoreIF;
#include <string>
namespace testsemaph {
void testBinSemaph();
void testBinSemaphoreImplementation(SemaphoreIF* binSemaph, std::string id);
void testCountingSemaph();
void testCountingSemaphImplementation(SemaphoreIF* countingSemaph, std::string id);
} // namespace testsemaph
#endif /* UNITTEST_INTERNAL_INTTESTSEMAPHORE_H_ */