我使用custom main file添加了自己的命令行选项:
// ...
auto cli
= session.cli() // Get Catch's composite command line parser
| Opt( height, "height" ) // bind variable to a new option, with a hint string
["-g"]["--height"] // the option names it will respond to
("how high?"); // description string for the help output
// ...
}
现在,我想在测试用例中使用height
命令行选项。最好的方法是什么?