BoxKite.Twitter.Tests.FriendsFollowersExtensionsTests.Get_Outgoing_Friend_Requests C# (CSharp) Method

Get_Outgoing_Friend_Requests() private method

private Get_Outgoing_Friend_Requests ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        public async Task Get_Outgoing_Friend_Requests()
        {
            // arrange
            session.Returns(await Json.FromFile("data\\friendsfollowers\\friendsfollowersids.txt"));
            session.ExpectGet("https://api.twitter.com/1.1/friendships/outgoing.json");

            var fsr = await session.GetFriendshipRequestsOutgoing();

            Assert.IsNotNull(fsr);
            fsr.next_cursor.ShouldBeEquivalentTo(0);
            fsr.UserIDs.Should().HaveCount(31);
            fsr.UserIDs.ToList()[6].ShouldBeEquivalentTo(14488353);
        }