当前位置: 首页>>代码示例>>C++>>正文


C++ OptionsList::getEntry方法代码示例

本文整理汇总了C++中OptionsList::getEntry方法的典型用法代码示例。如果您正苦于以下问题:C++ OptionsList::getEntry方法的具体用法?C++ OptionsList::getEntry怎么用?C++ OptionsList::getEntry使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OptionsList的用法示例。


在下文中一共展示了OptionsList::getEntry方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: args

using dataTypes::OptionEntry;

TEST_FUNCTION(10) {
  std::vector<std::string> args({"--test-argument-value-space", "argument value", "--test-argument-value-equals",
                                 "=sample", "some/file/path", "--test-boolean"});
  OptionsList opts;
  opts.addEntry(OptionEntry(dataTypes::OptionArgumentType::OptionArgumentFilename, 0, "test-argument-value-space",
                            "Test passing argument for the value with space", nullptr, "name"));
  opts.addEntry(OptionEntry(dataTypes::OptionArgumentType::OptionArgumentFilename, 0, "test-argument-value-equals",
                            "Test passing argument for the value with equals", nullptr, "name"));
  opts.addEntry(
    OptionEntry(dataTypes::OptionArgumentType::OptionArgumentLogical, 0, "test-boolean", "Test boolean value"));

  int retVal = 0;
  ensure("Unable to parse command line", opts.parse(args, retVal));
  ensure("incorrect test-boolean", opts.getEntry("test-boolean")->value.logicalValue);
  ensure_equals("incorrect test-argument-value-equals", opts.getEntry("test-argument-value-equals")->value.textValue,
                "=sample");
  ensure_equals("incorrect test-argument-value-space", opts.getEntry("test-argument-value-space")->value.textValue,
                "argument value");
  ensure("incorrect number of leftover values", opts.pathArgs.size() == 1);
  ensure_equals("incorrect leftover value", opts.pathArgs[0], "some/file/path");
}

TEST_FUNCTION(20) {
  std::vector<std::string> args({"--test-return-value", "--test-callback", "--test-argument-value-space",
                                 "argument value", "--test-argument-value-equals", "=sample", "some/file/path",
                                 "--test-boolean"});
  OptionsList opts;
  opts.addEntry(
    OptionEntry(dataTypes::OptionArgumentType::OptionArgumentLogical, 0, "test-boolean", "Test boolean value"));
开发者ID:pk-codebox-evo,项目名称:mysql-workbench,代码行数:31,代码来源:command_line_parser_test.cpp


注:本文中的OptionsList::getEntry方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。