feat(array): add base array template

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

9
test/Array.cpp Normal file
View file

@ -0,0 +1,9 @@
#include "Array.hpp"
#include "Test.hpp"
TEST_CASE("TSBaseArray", "[list]") {
SECTION("constructs correctly") {
TSBaseArray<uint32_t> array;
REQUIRE(array.Count() == 0);
}
}