IConfig interface
| 897 | |
| 898 | // IConfig interface |
| 899 | bool Config::allowThrows() const { return !m_data.noThrow; } |
| 900 | StringRef Config::name() const { return m_data.name.empty() ? m_data.processName : m_data.name; } |
| 901 | bool Config::includeSuccessfulResults() const { return m_data.showSuccessfulTests; } |
| 902 | bool Config::warnAboutMissingAssertions() const { |
no test coverage detected