public async Task GetPageString_Url_ReturnStringBody() { string htmlDocument = await HtmlDocuments.GetPageString(); Assert.IsNotNull(htmlDocument); }
public async Task GetHtmlDocument_StringBody_ReturnHtmlDocument() { HtmlDocument htmlDocument = await HtmlDocuments.GetHtmlDocument(); Assert.IsNotNull(htmlDocument); }