public void GetUserId()
        {
            var mockClient = new LoginClient();
            var platform   = new PlayGamesPlatform(mockClient);

            mockClient.UserId = "userId";

            Assert.AreEqual("userId", platform.GetUserId());
        }