some tag replacements
This commit is contained in:
parent
65a47c7c57
commit
43fb6ef5cb
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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 {
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
#include "CatchDefinitions.h"
|
||||
|
||||
TEST_CASE("PlacementFactory Tests", "[TestPlacementFactory]") {
|
||||
TEST_CASE("PlacementFactory Tests", "[containers]") {
|
||||
INFO("PlacementFactory Tests");
|
||||
|
||||
LocalPool::LocalPoolConfig poolCfg = {
|
||||
|
Loading…
Reference in New Issue
Block a user