diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-09-14 17:49:07 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-09-14 17:50:55 +0300 |
commit | a881be4856c6d3dc7675059d5a635d34434b5797 (patch) | |
tree | de1551798279a2fa048e70c977b3c3f98f515d62 /src/unittest.h | |
parent | 71f28db1b8e26377d56f0eb0aef01f6c6c3afbd0 (diff) | |
download | j1chess-a881be4856c6d3dc7675059d5a635d34434b5797.tar.gz |
refactor: use lowerCamelCase for functions
Diffstat (limited to 'src/unittest.h')
-rw-r--r-- | src/unittest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unittest.h b/src/unittest.h index e32ee10..9a6d50e 100644 --- a/src/unittest.h +++ b/src/unittest.h @@ -14,8 +14,8 @@ bool assert(bool expression, const char* message); -void unit_test(bool expression, const char* subject); +void unitTest(bool expression, const char* subject); -void start_test_section(const char* name); +void testSection(const char* name); bool report(); |