cli.hpp
1
2
3
4
5
6
7
8
9
10
11
#ifndef CRUCIBLE_TESTING_CLI_HPP #define CRUCIBLE_TESTING_CLI_HPP #include <string> namespace crucible::testing::cli { [[nodiscard]] auto execute(std::string const &suite_name, int argc, char *argv[]) -> int; } #endif // CRUCIBLE_TESTING_CLI_HPP