#include #include #include #include "utils.h" using namespace std::literals; TEST_CASE_METHOD(JsonValidateFixture, "issue-9") { // Change the working directory to the issue path auto path = std::filesystem::path(__FILE__).parent_path(); REQUIRE_NOTHROW(std::filesystem::current_path(path)); REQUIRE_NOTHROW(validate("base.json"sv, "instance.json"sv)); }