Example #1
0
        public void Test_LeaveSession_LeavesSession()
        {
            var guid       = Guid.NewGuid();
            var playerName = "playerplayer";

            _service.LeaveSession(guid, playerName);

            _mockGameSessionStorage.Received().LeaveSession(guid, playerName);
        }