mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-01 12:55:40 +02:00
Detect and warn about overly complex expressions
This commit is contained in:
@@ -38,6 +38,6 @@ TEST_CASE( "succeeding/Tricky/complex lhs", "Where the LHS is not a simple value
|
||||
int a = 1;
|
||||
int b = 2;
|
||||
|
||||
// !TBD: This only captures part of the expression
|
||||
EXPECT( a == 2 || b == 2 );
|
||||
// This only captures part of the expression, but issues a warning about the rest
|
||||
EXPECT( a == 2 || b == 1 );
|
||||
}
|
Reference in New Issue
Block a user