public void Test_JoinSession_JoinsSession()
        {
            var join = new SessionContextModel
            {
                SessionId  = Guid.NewGuid(),
                PlayerName = "player player"
            };

            Controller.JoinSession(join);

            _mockGameSessionService.Received().JoinSession(join.SessionId, join.PlayerName);
        }