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