Updated test cases documentation

This commit is contained in:
Bartek Kryza
2021-08-03 23:48:37 +02:00
parent 55f1cc0298
commit beeb621140
13 changed files with 41 additions and 40 deletions

View File

@@ -31,17 +31,17 @@ public:
class StrategyA : public Strategy {
public:
void algorithm() override {}
void algorithm() override { }
};
class StrategyB : public Strategy {
public:
void algorithm() override {}
void algorithm() override { }
};
class StrategyC : public Strategy {
public:
void algorithm() override {}
void algorithm() override { }
};
class Context {