test: Put test data into TestSuite specific folders

This commit is contained in:
Eberhard Graether
2014-07-01 00:19:48 +02:00
parent 324dff80a8
commit 4c0f07c16f
15 changed files with 41 additions and 32 deletions
@@ -0,0 +1,33 @@
class Player {
public:
void Do() {}
};
class Base {};
class Game : public Base {
public:
Game() {
Init();
}
void Init() {}
void Run() {
player.Do();
}
private:
Player player;
};
Game* game;
int main() {
game = new Game();
game->Run();
delete game;
return 0;
}