From f911fa90224d33d1a53859049e828776f9814ae8 Mon Sep 17 00:00:00 2001 From: oktonion <0oktonion0@gmail.com> Date: Sun, 15 Sep 2024 19:37:04 +0300 Subject: [PATCH] Update delegate0_test.cpp --- tests/delegate0_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/delegate0_test.cpp b/tests/delegate0_test.cpp index f4b0d85..3960b63 100644 --- a/tests/delegate0_test.cpp +++ b/tests/delegate0_test.cpp @@ -243,7 +243,9 @@ TEST_CASE("Testing cpp delegate 0") { d0_other = delegate(&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));