Tyro/tests/ConfigTest.cpp

14 lines
271 B
C++
Raw Normal View History

#include "catch.hpp"
2015-07-02 15:05:05 -04:00
#include "../src/settings/Config.h"
TEST_CASE ("Base config class load json")
{
TyroConfig *config = new TyroConfig();
SECTION("Create Base Config Class")
{
config->LoadJson("{\"foo\":\"bar\"}");
REQUIRE(config->GetRoot().isObject());
}
}