Started to convert from catch2 to fuc2.

This commit is contained in:
Zed A. Shaw 2026-06-16 04:38:38 -04:00
parent 4deda37665
commit b8b42d5681
10 changed files with 615 additions and 493 deletions

View file

@ -1,6 +1,17 @@
#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include <fuc2/testing.hpp>
TEST_CASE("view based camera system", "[camera]") {
REQUIRE(1 == 1);
using namespace fuc2;
namespace camera_tests {
void test_view_based_camera_system() {
CHECK(1 == 1);
}
fuc2::Set TESTS{
.name="camera tests (EMPTY!)",
.tests={
TEST(test_view_based_camera_system),
}
};
}