feat(datastore): add CDataStore

This commit is contained in:
fallenoak 2022-12-30 14:31:58 -06:00 committed by GitHub
parent 4e3a4377d7
commit a43c4b9112
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 250 additions and 0 deletions

9
test/DataStore.cpp Normal file
View file

@ -0,0 +1,9 @@
#include "common/DataStore.hpp"
#include "test/Test.hpp"
TEST_CASE("CDataStore::CDataStore", "[datastore]") {
SECTION("constructs new data store") {
CDataStore msg;
SUCCEED();
}
}