Beispiel #1
0
        public async Task GetMangaTop_NoParameter_ShouldParseTopManga()
        {
            // When
            var top = await _jikan.GetMangaTop();

            // Then
            top.Should().NotBeNull();
        }
Beispiel #2
0
        public async Task GetMangaTop_NoParameter_ShouldParseTopManga()
        {
            MangaTop top = await jikan.GetMangaTop();

            Assert.NotNull(top);
        }
Beispiel #3
0
        public void ShouldParseTopManga()
        {
            MangaTop top = Task.Run(() => jikan.GetMangaTop()).Result;

            Assert.NotNull(top);
        }