| 7860 | std::ostream& Config::stream() const { return m_stream->stream(); } |
| 7861 | std::string Config::name() const { return m_data.name.empty() ? m_data.processName : m_data.name; } |
| 7862 | bool Config::includeSuccessfulResults() const { return m_data.showSuccessfulTests; } |
| 7863 | bool Config::warnAboutMissingAssertions() const { return !!(m_data.warnings & WarnAbout::NoAssertions); } |
| 7864 | bool Config::warnAboutNoTests() const { return !!(m_data.warnings & WarnAbout::NoTests); } |
| 7865 | ShowDurations::OrNot Config::showDurations() const { return m_data.showDurations; } |
no outgoing calls
no test coverage detected