mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
23 lines
536 B
C++
23 lines
536 B
C++
#include "storm/Array.hpp"
|
|
#include "test/Test.hpp"
|
|
|
|
TEST_CASE("TSBaseArray", "[list]") {
|
|
SECTION("constructs correctly") {
|
|
TSBaseArray<uint32_t> array;
|
|
REQUIRE(array.Count() == 0);
|
|
}
|
|
}
|
|
|
|
TEST_CASE("TSFixedArray", "[list]") {
|
|
SECTION("constructs correctly") {
|
|
TSFixedArray<uint32_t> array;
|
|
REQUIRE(array.Count() == 0);
|
|
}
|
|
}
|
|
|
|
TEST_CASE("TSGrowableArray", "[list]") {
|
|
SECTION("constructs correctly") {
|
|
TSGrowableArray<uint32_t> array;
|
|
REQUIRE(array.Count() == 0);
|
|
}
|
|
}
|