mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
feat(array): add growable array template
This commit is contained in:
parent
23df793b34
commit
3d5794ed7c
3 changed files with 149 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue