Download this file
1 2 3 4 5 6 7 8 9 10 11 12
#ifndef TESTS_H #define TESTS_H #include <vector> #include <string> void run_tests(); int run_fast_tests(); int run_not_slow_tests(); int run_user_defined_tests(const std::vector<std::string> & tests_or_tags); #endif