Skip to content

Commit

Permalink
Update delegate0_test.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
oktonion committed Sep 15, 2024
1 parent 121f121 commit f911fa9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/delegate0_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ TEST_CASE("Testing cpp delegate 0") {
d0_other = delegate<void>(&t, &Test::call);

CHECK_FALSE(d0_other == d0);
CHECK_FALSE(d0 == d0_other);
CHECK(d0_other != d0);
CHECK(d0 != d0_other);
CHECK((d0_other < d0) != (d0_other > d0));
CHECK((d0_other < d0) == (d0 > d0_other));
CHECK((d0_other > d0) == (d0 < d0_other));
Expand Down

0 comments on commit f911fa9

Please sign in to comment.