Remove disabled test
This commit is contained in:
parent
0c12878753
commit
61fd3bb5c0
1 changed files with 0 additions and 30 deletions
|
@ -1,30 +0,0 @@
|
||||||
#include "GameState.hpp"
|
|
||||||
#include <fmt/format.h>
|
|
||||||
#include <catch2/catch.hpp>
|
|
||||||
|
|
||||||
// TODO: Fuzzing
|
|
||||||
|
|
||||||
/*
|
|
||||||
TEST_CASE("GameStateTest") {
|
|
||||||
pacman::GameState gameState;
|
|
||||||
//fmt::print("{}\n", gameState.pellets.currentPositions().size());
|
|
||||||
|
|
||||||
int pacManDeathCount = 0;
|
|
||||||
bool canCountDeath = false;
|
|
||||||
for (std::size_t i = 0; i < 50000; ++i) {
|
|
||||||
gameState.inputState.up = i % 7 ? true : false;
|
|
||||||
gameState.inputState.down = i % 11 ? true : false;
|
|
||||||
gameState.inputState.left = i % 13 ? true : false;
|
|
||||||
gameState.inputState.right = i % 17 ? true : false;
|
|
||||||
|
|
||||||
canCountDeath = !gameState.isPacManDying();
|
|
||||||
gameState.step(std::chrono::milliseconds(1000 / 30));
|
|
||||||
if (canCountDeath && gameState.isPacManDying()) {
|
|
||||||
pacManDeathCount++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//fmt::print("{}\n", pacManDeathCount);
|
|
||||||
//fmt::print("{}\n", gameState.pellets.currentPositions().size());
|
|
||||||
}
|
|
||||||
*/
|
|
Loading…
Reference in a new issue