summaryrefslogtreecommitdiffstats
path: root/tests/test_validate_testing.h
diff options
context:
space:
mode:
authorAndrii Doroshenko (Xrayez) <xrayez@gmail.com>2021-01-08 14:15:43 +0200
committerAndrii Doroshenko (Xrayez) <xrayez@gmail.com>2021-01-08 14:15:43 +0200
commitfaab6ff97af1cbea552aa2503aa055166fa302c3 (patch)
treec4a71b994186cae8e3cea8c2daa6df3717929207 /tests/test_validate_testing.h
parentb72ad9d97b7d47fef925f48118ffbc4eb110f276 (diff)
downloadredot-engine-faab6ff97af1cbea552aa2503aa055166fa302c3.tar.gz
Use comma over `<<` operator for all unit test logging
The comma operator should be preferred now according to doctest. Moved macro aliases from `ClassDB` tests to `test_macros.h`, because those are also used in `TextServer` tests.
Diffstat (limited to 'tests/test_validate_testing.h')
-rw-r--r--tests/test_validate_testing.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_validate_testing.h b/tests/test_validate_testing.h
index cb6c037795..6d3eea724c 100644
--- a/tests/test_validate_testing.h
+++ b/tests/test_validate_testing.h
@@ -179,10 +179,8 @@ TEST_SUITE("Validate tests") {
color_arr.push_back(Color(2, 2, 2));
INFO(color_arr);
- INFO("doctest insertion operator << "
- << var << " " << vec2 << " " << rect2 << " " << color);
-
- CHECK(true); // So all above prints.
+ // doctest string concatenation.
+ CHECK_MESSAGE(true, var, " ", vec2, " ", rect2, " ", color);
}
}