blame: test/tester.hpp
| 452e64cc | sum01 | 2018-04-26 21:25 | 1 | #ifndef SAGO_TEST_HPP |
| 452e64cc | sum01 | 2018-04-26 21:25 | 2 | #define SAGO_TEST_HPP |
| 452e64cc | sum01 | 2018-04-26 21:25 | 3 | |
| 452e64cc | sum01 | 2018-04-26 21:25 | 4 | #include <string> |
| 452e64cc | sum01 | 2018-04-26 21:25 | 5 | #include <vector> |
| 452e64cc | sum01 | 2018-04-26 21:25 | 6 | |
| 452e64cc | sum01 | 2018-04-26 21:25 | 7 | // std::string is expected input |
| 452e64cc | sum01 | 2018-04-26 21:25 | 8 | void run_test(const std::string&); |
| 452e64cc | sum01 | 2018-04-26 21:25 | 9 | |
| 452e64cc | sum01 | 2018-04-26 21:25 | 10 | // A special overload for the two funcs that take a vector |
| 452e64cc | sum01 | 2018-04-26 21:25 | 11 | void run_test(const std::vector<std::string>&); |
| 452e64cc | sum01 | 2018-04-26 21:25 | 12 | |
| 452e64cc | sum01 | 2018-04-26 21:25 | 13 | #endif |
| 1970-01-01 00:00 | 14 |