feat(array): add growable array template

This commit is contained in:
fallenoak 2020-09-25 16:50:56 -05:00
parent 23df793b34
commit 3d5794ed7c
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 149 additions and 0 deletions

View file

@ -14,3 +14,10 @@ TEST_CASE("TSFixedArray", "[list]") {
REQUIRE(array.Count() == 0);
}
}
TEST_CASE("TSGrowableArray", "[list]") {
SECTION("constructs correctly") {
TSGrowableArray<uint32_t> array;
REQUIRE(array.Count() == 0);
}
}