示例#1
0
        public async void DownloadJsonWithValidUriShouldReturnNotNullOrEmptyResult()
        {
            //arrange
            Uri uri = new Uri(_validFrontPageArticleUrl);

            //act
            string result = await _contentApi.DownloadJson(uri);

            //assert
            Assert.IsNotNullOrEmpty(result);
        }