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

@ -3,5 +3,5 @@
class ChapterTest {
public:
virtual ~ChapterTest() = default;
virtual void test() = 0;
virtual void run() = 0;
};