Esempio n. 1
0
        public void Test_CheckUserFollowsByChannel()
        {
            // Am following, expecting result
            string userId    = "32220409"; // travy92
            string channelId = "28036688"; // trick2g

            Assert.IsNotNull(twitchClient.CheckUserFollowsByChannel(userId, channelId).Result);

            // Not following, still expecting result (but 404 http code with message of "X is not following Y")
            channelId = "129454141";
            Assert.IsNotNull(twitchClient.CheckUserFollowsByChannel(userId, channelId).Result);
        }