chore(test): fix tag for array tests

This commit is contained in:
fallenoak 2020-12-08 19:42:37 -06:00
parent 787618142c
commit 95fed153cd
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -2,7 +2,7 @@
#include "storm/String.hpp" #include "storm/String.hpp"
#include "test/Test.hpp" #include "test/Test.hpp"
TEST_CASE("TSBaseArray", "[list]") { TEST_CASE("TSBaseArray", "[array]") {
SECTION("constructs correctly") { SECTION("constructs correctly") {
TSBaseArray<uint32_t> array; TSBaseArray<uint32_t> array;
REQUIRE(array.Count() == 0); REQUIRE(array.Count() == 0);
@ -16,14 +16,14 @@ TEST_CASE("TSBaseArray::MemFileName", "[array]") {
} }
} }
TEST_CASE("TSFixedArray", "[list]") { TEST_CASE("TSFixedArray", "[array]") {
SECTION("constructs correctly") { SECTION("constructs correctly") {
TSFixedArray<uint32_t> array; TSFixedArray<uint32_t> array;
REQUIRE(array.Count() == 0); REQUIRE(array.Count() == 0);
} }
} }
TEST_CASE("TSGrowableArray", "[list]") { TEST_CASE("TSGrowableArray", "[array]") {
SECTION("constructs correctly") { SECTION("constructs correctly") {
TSGrowableArray<uint32_t> array; TSGrowableArray<uint32_t> array;
REQUIRE(array.Count() == 0); REQUIRE(array.Count() == 0);