feat(prop): add prop functions

This commit is contained in:
fallenoak 2022-12-31 17:25:54 -06:00 committed by GitHub
parent 900aed5ee6
commit 5068af21cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 81 additions and 0 deletions

9
test/Prop.cpp Normal file
View file

@ -0,0 +1,9 @@
#include "common/Prop.hpp"
#include "test/Test.hpp"
TEST_CASE("PropInitialize", "[prop]") {
SECTION("initializes prop") {
PropInitialize();
SUCCEED();
}
}