using System; using Xunit; using Newtonsoft.Json.Linq; using FluentAssertions; using System.Collections.Generic; using System.Collections.Concurrent; namespace raven_integration { public class Docs { /// /// /// [Fact] public async void UserManualShouldFetch() { ApiTextResponse t = await Util.GetNonApiPageAsync("docs/"); Util.ValidateHTTPStatusCode(t, 200); t.TextResponse.Should().Contain("AyaNova manual"); } //================================================== }//eoc }//eons