File indexing completed on 2025-01-18 09:54:08
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef CATCH_ASSERTION_INFO_HPP_INCLUDED
0009 #define CATCH_ASSERTION_INFO_HPP_INCLUDED
0010
0011 #include <catch2/internal/catch_result_type.hpp>
0012 #include <catch2/internal/catch_source_line_info.hpp>
0013 #include <catch2/internal/catch_stringref.hpp>
0014
0015 namespace Catch {
0016
0017 struct AssertionInfo {
0018
0019
0020 StringRef macroName;
0021 SourceLineInfo lineInfo;
0022 StringRef capturedExpression;
0023 ResultDisposition::Flags resultDisposition;
0024 };
0025
0026 }
0027
0028 #endif