#include "storm/Hash.hpp" #include "test/Test.hpp" struct TestHashObject : TSHashObject { uint32_t index = 0; }; TEST_CASE("TSHashTable", "[hash]") { SECTION("constructs correctly") { TSHashTable hashTable; REQUIRE(hashTable.Head() == nullptr); } }