public async Task GetMangaForumTopicsAsync_MonsterId_ShouldParseMonsterTopics() { // When var monster = await _jikan.GetMangaForumTopicsAsync(1); // Then using var _ = new AssertionScope(); monster.Data.Should().Contain(x => x.Title.StartsWith("Monster Chapter")); monster.Data.Should().HaveCount(15); }