Ejemplo n.º 1
0
        public void TranslationProfileGetAsyncTest()
        {
            ProfilesResponse profileResponse = new ProfilesResponse();

            Task.Run(async() =>
            {
                profileResponse = await translationApi.TranslationProfileGetAsync("en", "fr", null, null);
            }).Wait();
            Assert.IsNotNull(profileResponse.Profiles);
        }