| 83 | } |
| 84 | |
| 85 | std::string TestCaseReader::stringSetting(std::string const& _name, std::string const& _defaultValue) |
| 86 | { |
| 87 | if (m_settings.count(_name) == 0) |
| 88 | return _defaultValue; |
| 89 | |
| 90 | m_unreadSettings.erase(_name); |
| 91 | return m_settings.at(_name); |
| 92 | } |
| 93 | |
| 94 | void TestCaseReader::ensureAllSettingsRead() const |
| 95 | { |
no test coverage detected