Exemplo n.º 1
0
        public async Task GetMangaTop_NoParameter_ShouldParseTopManga()
        {
            // When
            var top = await _jikan.GetMangaTop();

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

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

            Assert.NotNull(top);
        }