feat: refactor rename test() to run()

This commit is contained in:
Michael Mandl 2023-10-21 16:44:06 +02:00
parent 89d1469088
commit 88742436a1
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
10 changed files with 10 additions and 10 deletions

View file

@ -25,7 +25,7 @@ int main(int argc, char **argv) {
for (auto &[name, test] : chapterTests) {
std::cout << "\n" << name << std::endl;
test->test();
test->run();
}
std::cout << "\nExiting" << std::endl;