Files
nd-wfc/tests/test_main.cpp
cdemeyer-teachx 14aa93ada0 allocator tests
2025-09-12 12:01:39 +09:00

15 lines
315 B
C++

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