private static async void TestSearchMangaAsync(ICredentialContext credential) { var asyncMangaSearcher = new MangaSearchMethodsAsync(credential); MangaSearchResponse response = await asyncMangaSearcher.SearchDeserializedAsync("Dagashi Kashi"); Console.WriteLine(response.ToJson()); Console.WriteLine(response.ToXml()); }
public MangaSearchMethodsAsyncTest(CredentialContextFixture credentialContextFixture, ITestOutputHelper output) : base(credentialContextFixture) { _output = output; _sut = new MangaSearchMethodsAsync(credentialContextFixture.CredentialContext); }