Now off catch2 and on my own testing fuc2.

This commit is contained in:
Zed A. Shaw 2026-06-16 01:34:03 -04:00
parent 4f3fa59793
commit 1d11c8b162
10 changed files with 177 additions and 98 deletions

31
tests/main.cpp Normal file
View file

@ -0,0 +1,31 @@
#include <fuc2/run.hpp>
// you can also place these into a .hpp you include if
// they're too numerous to manage
namespace lel_tests {
extern fuc2::Set TESTS;
}
namespace guecs_tests {
extern fuc2::Set TESTS;
}
namespace shader_tests {
extern fuc2::Set TESTS;
}
namespace sound_tests {
extern fuc2::Set TESTS;
}
namespace texture_tests {
extern fuc2::Set TESTS;
}
int main(int argc, char* argv[]) {
run(lel_tests::TESTS);
run(guecs_tests::TESTS);
run(shader_tests::TESTS);
run(sound_tests::TESTS);
run(texture_tests::TESTS);
}