Files
nd-wfc/tests/test_main.cpp

12 lines
245 B
C++

#include <gtest/gtest.h>
#include <array>
#include <vector>
#include <algorithm>
#include "nd-wfc/wfc.hpp"
#include "nd-wfc/worlds.hpp"
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}