some tag replacements
fsfw/fsfw/pipeline/pr-development This commit looks good Details

This commit is contained in:
Robin Müller 2022-08-08 12:35:58 +02:00
parent 65a47c7c57
commit 43fb6ef5cb
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
9 changed files with 9 additions and 9 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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 {

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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);

View File

@ -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);

View File

@ -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 = {