From 3c6fc8cce24cecb02fee6358949848c00d4a357c Mon Sep 17 00:00:00 2001 From: "piotr.idzik" Date: Wed, 24 May 2023 09:49:37 +0200 Subject: [PATCH] refactor: rename to tests() --- dynamic_programming/longest_common_string.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dynamic_programming/longest_common_string.cpp b/dynamic_programming/longest_common_string.cpp index 342cd7b37..bbea4a89a 100644 --- a/dynamic_programming/longest_common_string.cpp +++ b/dynamic_programming/longest_common_string.cpp @@ -128,7 +128,7 @@ void test_longest_common_string_length_for_reversed_inputs( /** * @brief runns all tests for longest_common_string_length funcion */ -void test_all() { +void tests() { const auto test_cases = get_test_cases(); assert(test_cases.size() > 0); test_longest_common_string_length(test_cases); @@ -137,6 +137,6 @@ void test_all() { } int main() { - test_all(); + tests(); return 0; }