| 16 | #include <string> |
| 17 | |
| 18 | class SimpleFormatter : public CLI::FormatterBase { |
| 19 | public: |
| 20 | SimpleFormatter() : FormatterBase() {} |
| 21 | |
| 22 | std::string make_help(const CLI::App *, std::string, CLI::AppFormatMode) const override { |
| 23 | return "This is really simple"; |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | TEST_CASE("Formatter: Nothing", "[formatter]") { |
| 28 | CLI::App app{"My prog"}; |
nothing calls this directly
no outgoing calls
no test coverage detected