#include "storm/Thread.hpp" #include "test/Test.hpp" TEST_CASE("SGetCurrentThreadId", "[thread]") { SECTION("returns thread id") { uintptr_t threadId = SGetCurrentThreadId(); CHECK(threadId > 0); } }