feat(array): add fixed array template

This commit is contained in:
fallenoak 2020-09-24 23:44:35 -05:00
parent 5946abcb7d
commit 23df793b34
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 75 additions and 0 deletions

View file

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