| 8919 | namespace Catch { |
| 8920 | |
| 8921 | SectionInfo::SectionInfo(SourceLineInfo const &_lineInfo, std::string const &_name, std::string const &_description) |
| 8922 | : name(_name), description(_description), lineInfo(_lineInfo) { |
| 8923 | } |
| 8924 | |
| 8925 | SectionEndInfo::SectionEndInfo(SectionInfo const &_sectionInfo, Counts const &_prevAssertions, |
| 8926 | double _durationInSeconds) |
nothing calls this directly
no outgoing calls
no test coverage detected