2020-10-20 17:11:23 +02:00
|
|
|
#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();
|
2022-02-02 10:29:30 +01:00
|
|
|
void testCountingSemaphImplementation(SemaphoreIF* countingSemaph, std::string id);
|
|
|
|
} // namespace testsemaph
|
2020-10-20 17:11:23 +02:00
|
|
|
|
|
|
|
#endif /* UNITTEST_INTERNAL_INTTESTSEMAPHORE_H_ */
|