2022-07-26 13:59:09 +02:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
|
|
|
2022-07-26 14:10:24 +02:00
|
|
|
#include "mocks/PusServiceBaseMock.h"
|
|
|
|
#include "mocks/PusVerificationReporterMock.h"
|
2022-07-26 13:59:09 +02:00
|
|
|
|
2022-07-26 14:10:24 +02:00
|
|
|
TEST_CASE("Pus Service Base", "[pus-service-base]") {
|
|
|
|
auto verificationReporter = PusVerificationReporterMock();
|
|
|
|
auto psb = PsbMock(17, 0x02, verificationReporter);
|
|
|
|
}
|