common/test/DataStore.cpp
2022-12-30 14:31:58 -06:00

9 lines
205 B
C++

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