stuff-from-scratch/test/core/TestTomlReader.cpp
2022-10-10 08:57:32 +01:00

14 lines
No EOL
266 B
C++

#include "TomlReader.h"
#include <filesystem>
int main()
{
const auto data_loc = std::filesystem::path(__FILE__) / "../data";
const auto sample_toml_file = data_loc / "sample_toml.toml";
auto reader = TomlReader();
reader.read(sample_toml_file);
return 0;
}