CFDP FSFW Integration #111
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#include "mocks/MessageQueueMock.h"
|
#include "mocks/MessageQueueMock.h"
|
||||||
|
|
||||||
TEST_CASE("Action Helper", "[ActionHelper]") {
|
TEST_CASE("Action Helper", "[action]") {
|
||||||
ActionHelperOwnerMockBase testDhMock;
|
ActionHelperOwnerMockBase testDhMock;
|
||||||
// TODO: Setting another number here breaks the test. Find out why
|
// TODO: Setting another number here breaks the test. Find out why
|
||||||
MessageQueueMock testMqMock(MessageQueueIF::NO_QUEUE);
|
MessageQueueMock testMqMock(MessageQueueIF::NO_QUEUE);
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#include "CatchDefinitions.h"
|
#include "CatchDefinitions.h"
|
||||||
|
|
||||||
TEST_CASE("Ring Buffer Test", "[RingBufferTest]") {
|
TEST_CASE("Ring Buffer Test", "[containers]") {
|
||||||
uint8_t testData[13] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
|
uint8_t testData[13] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
|
||||||
uint8_t readBuffer[10] = {13, 13, 13, 13, 13, 13, 13, 13, 13, 13};
|
uint8_t readBuffer[10] = {13, 13, 13, 13, 13, 13, 13, 13, 13, 13};
|
||||||
SimpleRingBuffer ringBuffer(10, false, 5);
|
SimpleRingBuffer ringBuffer(10, false, 5);
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
/**
|
/**
|
||||||
* @brief Array List test
|
* @brief Array List test
|
||||||
*/
|
*/
|
||||||
TEST_CASE("Array List", "[ArrayListTest]") {
|
TEST_CASE("Array List", "[containers]") {
|
||||||
// perform set-up here
|
// perform set-up here
|
||||||
ArrayList<uint16_t> list(20);
|
ArrayList<uint16_t> list(20);
|
||||||
struct TestClass {
|
struct TestClass {
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include "CatchDefinitions.h"
|
#include "CatchDefinitions.h"
|
||||||
|
|
||||||
TEST_CASE("Dynamic Fifo Tests", "[TestDynamicFifo]") {
|
TEST_CASE("Dynamic Fifo Tests", "[containers]") {
|
||||||
INFO("Dynamic Fifo Tests");
|
INFO("Dynamic Fifo Tests");
|
||||||
struct Test {
|
struct Test {
|
||||||
uint64_t number1;
|
uint64_t number1;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include "CatchDefinitions.h"
|
#include "CatchDefinitions.h"
|
||||||
|
|
||||||
TEST_CASE("Static Fifo Tests", "[TestFifo]") {
|
TEST_CASE("Static Fifo Tests", "[containers]") {
|
||||||
INFO("Fifo Tests");
|
INFO("Fifo Tests");
|
||||||
struct Test {
|
struct Test {
|
||||||
uint64_t number1;
|
uint64_t number1;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#include "CatchDefinitions.h"
|
#include "CatchDefinitions.h"
|
||||||
|
|
||||||
TEST_CASE("FixedArrayList Tests", "[TestFixedArrayList]") {
|
TEST_CASE("FixedArrayList Tests", "[containers]") {
|
||||||
INFO("FixedArrayList Tests");
|
INFO("FixedArrayList Tests");
|
||||||
using testList = FixedArrayList<uint32_t, 260, uint16_t>;
|
using testList = FixedArrayList<uint32_t, 260, uint16_t>;
|
||||||
testList list;
|
testList list;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
template class FixedMap<unsigned int, unsigned short>;
|
template class FixedMap<unsigned int, unsigned short>;
|
||||||
|
|
||||||
TEST_CASE("FixedMap Tests", "[TestFixedMap]") {
|
TEST_CASE("FixedMap Tests", "[containers]") {
|
||||||
INFO("FixedMap Tests");
|
INFO("FixedMap Tests");
|
||||||
|
|
||||||
FixedMap<unsigned int, unsigned short> map(30);
|
FixedMap<unsigned int, unsigned short> map(30);
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#include "CatchDefinitions.h"
|
#include "CatchDefinitions.h"
|
||||||
|
|
||||||
TEST_CASE("FixedOrderedMultimap Tests", "[TestFixedOrderedMultimap]") {
|
TEST_CASE("FixedOrderedMultimap Tests", "[containers]") {
|
||||||
INFO("FixedOrderedMultimap Tests");
|
INFO("FixedOrderedMultimap Tests");
|
||||||
|
|
||||||
FixedOrderedMultimap<unsigned int, unsigned short> map(30);
|
FixedOrderedMultimap<unsigned int, unsigned short> map(30);
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#include "CatchDefinitions.h"
|
#include "CatchDefinitions.h"
|
||||||
|
|
||||||
TEST_CASE("PlacementFactory Tests", "[TestPlacementFactory]") {
|
TEST_CASE("PlacementFactory Tests", "[containers]") {
|
||||||
INFO("PlacementFactory Tests");
|
INFO("PlacementFactory Tests");
|
||||||
|
|
||||||
LocalPool::LocalPoolConfig poolCfg = {
|
LocalPool::LocalPoolConfig poolCfg = {
|
||||||
|
Loading…
Reference in New Issue
Block a user