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"
TEST_CASE("Action Helper", "[ActionHelper]") {
TEST_CASE("Action Helper", "[action]") {
ActionHelperOwnerMockBase testDhMock;
// TODO: Setting another number here breaks the test. Find out why
MessageQueueMock testMqMock(MessageQueueIF::NO_QUEUE);

View File

@ -5,7 +5,7 @@
#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 readBuffer[10] = {13, 13, 13, 13, 13, 13, 13, 13, 13, 13};
SimpleRingBuffer ringBuffer(10, false, 5);

View File

@ -8,7 +8,7 @@
/**
* @brief Array List test
*/
TEST_CASE("Array List", "[ArrayListTest]") {
TEST_CASE("Array List", "[containers]") {
// perform set-up here
ArrayList<uint16_t> list(20);
struct TestClass {

View File

@ -6,7 +6,7 @@
#include "CatchDefinitions.h"
TEST_CASE("Dynamic Fifo Tests", "[TestDynamicFifo]") {
TEST_CASE("Dynamic Fifo Tests", "[containers]") {
INFO("Dynamic Fifo Tests");
struct Test {
uint64_t number1;

View File

@ -6,7 +6,7 @@
#include "CatchDefinitions.h"
TEST_CASE("Static Fifo Tests", "[TestFifo]") {
TEST_CASE("Static Fifo Tests", "[containers]") {
INFO("Fifo Tests");
struct Test {
uint64_t number1;

View File

@ -5,7 +5,7 @@
#include "CatchDefinitions.h"
TEST_CASE("FixedArrayList Tests", "[TestFixedArrayList]") {
TEST_CASE("FixedArrayList Tests", "[containers]") {
INFO("FixedArrayList Tests");
using testList = FixedArrayList<uint32_t, 260, uint16_t>;
testList list;

View File

@ -7,7 +7,7 @@
template class FixedMap<unsigned int, unsigned short>;
TEST_CASE("FixedMap Tests", "[TestFixedMap]") {
TEST_CASE("FixedMap Tests", "[containers]") {
INFO("FixedMap Tests");
FixedMap<unsigned int, unsigned short> map(30);

View File

@ -5,7 +5,7 @@
#include "CatchDefinitions.h"
TEST_CASE("FixedOrderedMultimap Tests", "[TestFixedOrderedMultimap]") {
TEST_CASE("FixedOrderedMultimap Tests", "[containers]") {
INFO("FixedOrderedMultimap Tests");
FixedOrderedMultimap<unsigned int, unsigned short> map(30);

View File

@ -7,7 +7,7 @@
#include "CatchDefinitions.h"
TEST_CASE("PlacementFactory Tests", "[TestPlacementFactory]") {
TEST_CASE("PlacementFactory Tests", "[containers]") {
INFO("PlacementFactory Tests");
LocalPool::LocalPoolConfig poolCfg = {