From a881be4856c6d3dc7675059d5a635d34434b5797 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Wed, 14 Sep 2022 17:49:07 +0300 Subject: refactor: use lowerCamelCase for functions --- src/unittest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/unittest.c') diff --git a/src/unittest.c b/src/unittest.c index af81cd9..137e899 100644 --- a/src/unittest.c +++ b/src/unittest.c @@ -16,14 +16,14 @@ bool assert(bool expression, const char* message) { return expression; } -void unit_test(bool expression, const char* subject) { +void unitTest(bool expression, const char* subject) { TOTAL++; SECTION_TOTAL++; printf( "%d.%d %s: %s\n", SECTION_NUMBER, SECTION_TOTAL, subject, expression? draw(GRN, PASS) : draw(RED, FAIL)); if (expression) SUCCESS++; } -void start_test_section(const char* name) { +void testSection(const char* name) { SECTION_TOTAL = 0; SECTION_NUMBER++; printf("%d.%s %s %s\n", SECTION_NUMBER, CYAN, name, RESET); -- cgit v1.2.3