mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(array): add base array template
This commit is contained in:
parent
942fb18537
commit
5946abcb7d
3 changed files with 49 additions and 0 deletions
9
test/Array.cpp
Normal file
9
test/Array.cpp
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue