Exemplo n.º 1
0
        public void ItDeletesTheSpecifiedPlayedGame()
        {
            _playedGameDeleter.DeletePlayedGame(_playedGameId, _currentUser);

            _dataContextMock.AssertWasCalled(mock => mock.DeleteById <PlayedGame>(_playedGameId, _currentUser));
        }