コード例 #1
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetCouponsForBrandAsync(string id)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetCouponsByBrandAsync(id);

            //Assert
            Assert.NotNull(result);
        }
コード例 #2
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetTwitterChannelInformationAsync(string id)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetTwitterChannelInformationAsync(id);

            //Assert
            Assert.NotNull(result);
        }
コード例 #3
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetCouponCategoriesAsync()
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetCouponCategoriesAsync();

            //Assert
            Assert.NotNull(result);
        }
コード例 #4
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetCouponsByCategoryAsync(string category)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetCouponsByCategoryAsync(category);

            //Assert
            Assert.NotNull(result);
        }
コード例 #5
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetUserPostsAsync(PostsPlatform platform, string userId)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetUserPostsAsync(platform, userId);

            //Assert
            Assert.NotNull(result);
        }
コード例 #6
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetCouponsWithOffsetAsync(int offset)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetCouponsAsync(offset);

            //Assert
            Assert.NotNull(result);
        }
コード例 #7
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetSubscribersAsync(RankAllPlatform platform, Size size)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetSubscribersAsync(platform, size);

            //Assert
            Assert.NotNull(result);
        }
コード例 #8
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetPastMilestonesAsync()
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetPastMilestonesAsync();

            //Assert
            Assert.NotNull(result);
        }
コード例 #9
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetRetweetsScoreboardAsync(Size size)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetRetweetsScoreboardAsync(size);

            //Assert
            Assert.NotNull(result);
        }
コード例 #10
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetLikesScoreboardAsync(RankLikesPlatform platform, Size size)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetLikesScoreboardAsync(platform, size);

            //Assert
            Assert.NotNull(result);
        }
コード例 #11
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_SearchUserAsync(string term)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.SearchUserAsync(term);

            //Assert
            Assert.NotNull(result);
        }
コード例 #12
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetArtistInformationAsync(string userId)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetArtistInformationAsync(userId);

            //Assert
            Assert.NotNull(result);
        }
コード例 #13
0
ファイル: DemoRuns.cs プロジェクト: AlexanderGipp/Nindo.Net
        public async Task DemoRun_GetTikTokChannelHistoryAsync(string id)
        {
            //Arrange
            NindoClient client = new NindoClient();

            //Act
            var result = await client.GetTikTokChannelHistoryAsync(id);

            //Assert
            Assert.NotNull(result);
        }