21 lines
395 B
C++
21 lines
395 B
C++
#include <fuc2/run.hpp>
|
|
|
|
using namespace fuc2;
|
|
|
|
TEST_SET(lel_tests);
|
|
TEST_SET(guecs_tests);
|
|
TEST_SET(shader_tests);
|
|
TEST_SET(sound_tests);
|
|
TEST_SET(texture_tests);
|
|
|
|
int main(int argc, char* argv[]) {
|
|
std::vector<Set> all_tests{
|
|
lel_tests::TESTS,
|
|
guecs_tests::TESTS,
|
|
shader_tests::TESTS,
|
|
sound_tests::TESTS,
|
|
texture_tests::TESTS,
|
|
};
|
|
|
|
run_tests(all_tests, argc, argv);
|
|
}
|