123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef TWOBLUECUBES_CATCH_SECTION_INFO_H_INCLUDED
- #define TWOBLUECUBES_CATCH_SECTION_INFO_H_INCLUDED
- #include "catch_common.h"
- #include "catch_totals.h"
- #include <string>
- namespace Catch {
- struct SectionInfo {
- SectionInfo
- ( SourceLineInfo const& _lineInfo,
- std::string const& _name );
-
- SectionInfo
- ( SourceLineInfo const& _lineInfo,
- std::string const& _name,
- std::string const& ) : SectionInfo( _lineInfo, _name ) {}
- std::string name;
- std::string description;
- SourceLineInfo lineInfo;
- };
- struct SectionEndInfo {
- SectionInfo sectionInfo;
- Counts prevAssertions;
- double durationInSeconds;
- };
- }
- #endif
|