Skip to content

Commit 3c6fc8c

Browse files
committed
refactor: rename to tests()
1 parent 1874b76 commit 3c6fc8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dynamic_programming/longest_common_string.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ void test_longest_common_string_length_for_reversed_inputs(
128128
/**
129129
* @brief runns all tests for longest_common_string_length funcion
130130
*/
131-
void test_all() {
131+
void tests() {
132132
const auto test_cases = get_test_cases();
133133
assert(test_cases.size() > 0);
134134
test_longest_common_string_length(test_cases);
@@ -137,6 +137,6 @@ void test_all() {
137137
}
138138

139139
int main() {
140-
test_all();
140+
tests();
141141
return 0;
142142
}

0 commit comments

Comments
 (0)