| 9999 | bool Config::allowThrows() const { return !m_data.noThrow; } |
| 10000 | std::ostream& Config::stream() const { return m_stream->stream(); } |
| 10001 | std::string Config::name() const { return m_data.name.empty() ? m_data.processName : m_data.name; } |
| 10002 | bool Config::includeSuccessfulResults() const { return m_data.showSuccessfulTests; } |
| 10003 | bool Config::warnAboutMissingAssertions() const { return !!(m_data.warnings & WarnAbout::NoAssertions); } |
| 10004 | bool Config::warnAboutNoTests() const { return !!(m_data.warnings & WarnAbout::NoTests); } |
no test coverage detected