Ejemplo n.º 1
0
Archivo: Game.cs Proyecto: fawgv/tdd
        public void ChangesCurrentFrameIndex()
        {
            game.Roll(3);
            game.Roll(5);

            game.Roll(4);

            game.GetCurrentFrameIndex().Should().Be(1);
        }