Started to convert from catch2 to fuc2.
This commit is contained in:
parent
4deda37665
commit
b8b42d5681
10 changed files with 615 additions and 493 deletions
25
tests/main.cpp
Normal file
25
tests/main.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#include <fuc2/run.hpp>
|
||||
|
||||
using namespace fuc2;
|
||||
|
||||
TEST_SET(ai_tests);
|
||||
TEST_SET(animation_tests);
|
||||
TEST_SET(base_tests);
|
||||
TEST_SET(battle_tests);
|
||||
TEST_SET(camera_tests);
|
||||
TEST_SET(component_tests);
|
||||
TEST_SET(config_tests);
|
||||
TEST_SET(dbc_tests);
|
||||
TEST_SET(dinkyecs_tests);
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
run(ai_tests::TESTS);
|
||||
run(animation_tests::TESTS);
|
||||
run(base_tests::TESTS);
|
||||
run(battle_tests::TESTS);
|
||||
run(camera_tests::TESTS);
|
||||
run(component_tests::TESTS);
|
||||
run(config_tests::TESTS);
|
||||
run(dbc_tests::TESTS);
|
||||
run(dinkyecs_tests::TESTS);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue