roguish/tests/gui.cpp

19 lines
421 B
C++

#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include "gui.hpp"
#include "map.hpp"
#include "dinkyecs.hpp"
#include "worldbuilder.hpp"
#include "save.hpp"
#include "systems.hpp"
#include "spatialmap.hpp"
#include "components.hpp"
using namespace fmt;
using namespace components;
using std::string;
TEST_CASE("load a basic gui run but don't loop", "[gui]") {
GUI gui;
gui.main(true); // runs once
}