VkNet.Tests.VkApiTest.GetApiUrl_GetProfile_RightUrl C# (CSharp) Méthode

GetApiUrl_GetProfile_RightUrl() private méthode

private GetApiUrl_GetProfile_RightUrl ( ) : void
Résultat void
        public void GetApiUrl_GetProfile_RightUrl()
        {
            Parameters.Add("uid", "66748");

            var output = Api.GetApiUrl("getProfiles", Parameters);

            Assert.That(output, Is.Not.Null.Or.Empty);

            const string expected = "https://api.vk.com/method/getProfiles?uid=66748&access_token=token";

            Assert.That(output, Is.EqualTo(expected));
        }