mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-02 18:07:59 +00:00
Added AllOf and AnyOf matchers
This commit is contained in:
parent
9902ac9f1a
commit
9444bbcb7b
7 changed files with 345 additions and 87 deletions
|
@ -234,6 +234,10 @@ namespace Catch {
|
|||
|
||||
if( resultInfo.hasExpandedExpression() ) {
|
||||
m_config.stream << " for: ";
|
||||
if( resultInfo.getExpandedExpression().size() > 40 )
|
||||
m_config.stream << "\n";
|
||||
if( resultInfo.getExpandedExpression().size() < 70 )
|
||||
m_config.stream << "\t";
|
||||
TextColour colour( TextColour::ReconstructedExpression );
|
||||
m_config.stream << resultInfo.getExpandedExpression();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue