fsfw/unittests/pus/testService11.cpp

14 lines
406 B
C++
Raw Normal View History

2022-09-01 11:56:07 +02:00
#include <fsfw/pus/Service11TelecommandScheduling.h>
#include <catch2/catch_test_macros.hpp>
#include "objects/systemObjectList.h"
#include "tmtc/apid.h"
#include "tmtc/pusIds.h"
TEST_CASE("PUS Service 11", "[pus-srvc11]") {
2022-09-05 14:44:35 +02:00
Service11TelecommandScheduling<13> pusService11(
{objects::PUS_SERVICE_11_TC_SCHEDULER, apid::DEFAULT_APID, pus::PUS_SERVICE_11}, nullptr);
2022-09-01 11:56:07 +02:00
// TODO test something...
}