如何从Catch2测试用例中访问自定义命令行选项?

时间:2019-06-05 14:37:30

标签: c++ command-line catch2

我使用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命令行选项。最好的方法是什么?

0 个答案:

没有答案