mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
9 lines
225 B
C++
9 lines
225 B
C++
#include "storm/Thread.hpp"
|
|
#include "test/Test.hpp"
|
|
|
|
TEST_CASE("SGetCurrentThreadId", "[thread]") {
|
|
SECTION("returns thread id") {
|
|
uintptr_t threadId = SGetCurrentThreadId();
|
|
CHECK(threadId > 0);
|
|
}
|
|
}
|