-------------------------------------------------------------------------
| 32 | { |
| 33 | //------------------------------------------------------------------------- |
| 34 | boost::optional<cov::Options> Parse( |
| 35 | const std::string& optionName, |
| 36 | const std::wstring& value) |
| 37 | { |
| 38 | cov::OptionsParser parser; |
| 39 | std::vector<std::string> arguments = { TestTools::GetOptionPrefix() + optionName, |
| 40 | Tools::ToLocalString(value) }; |
| 41 | |
| 42 | return TestTools::Parse(parser, arguments); |
| 43 | } |
| 44 | |
| 45 | //------------------------------------------------------------------------- |
| 46 | void CheckPatternOption( |
no test coverage detected