feat(process): add basic process functions

This commit is contained in:
fallenoak 2023-03-03 10:44:30 -06:00 committed by GitHub
parent f9b65946a0
commit 3728c3d167
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

9
test/Process.cpp Normal file
View file

@ -0,0 +1,9 @@
#include "bc/Process.hpp"
#include "test/Test.hpp"
TEST_CASE("Blizzard::Process::Sleep", "[process]") {
SECTION("sleeps") {
Blizzard::Process::Sleep(1);
SUCCEED();
}
}