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