| 396 | } |
| 397 | |
| 398 | void write( DisplayResult & streams |
| 399 | , std::stringstream const & global = std::stringstream{} )const |
| 400 | { |
| 401 | if ( m_config.splitGroups ) |
| 402 | doWriteSplitted( streams ); |
| 403 | else if ( m_config.withGroups ) |
| 404 | doWriteUnsplittedWithGroups( streams, global ); |
| 405 | else |
| 406 | doWriteUnsplitted( streams, global ); |
| 407 | } |
| 408 | |
| 409 | std::string const & getName()const |
| 410 | { |
no outgoing calls
no test coverage detected