refactor: move test name into test class

This commit is contained in:
Michael Mandl 2023-10-21 21:29:36 +02:00
parent 543b4b832a
commit 3c193fc47b
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
7 changed files with 17 additions and 14 deletions

View file

@ -4,4 +4,5 @@ class ChapterTest {
public:
virtual ~ChapterTest() = default;
virtual void run() = 0;
virtual const char *name() const = 0;
};