示例#1
0
        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
        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
        public async Task DemoRun_GetCouponCategoriesAsync()
        {
            //Arrange
            NindoClient client = new NindoClient();

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

            //Assert
            Assert.NotNull(result);
        }
示例#4
0
        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
        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
        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
        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
        public async Task DemoRun_GetPastMilestonesAsync()
        {
            //Arrange
            NindoClient client = new NindoClient();

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

            //Assert
            Assert.NotNull(result);
        }
示例#9
0
        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
        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
        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
        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
        public async Task DemoRun_GetTikTokChannelHistoryAsync(string id)
        {
            //Arrange
            NindoClient client = new NindoClient();

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

            //Assert
            Assert.NotNull(result);
        }