BoxKite.Twitter.Tests.TweetExtensionsTests.Create_Reply_To_Tweet_with_Location C# (CSharp) Method

Create_Reply_To_Tweet_with_Location() private method

private Create_Reply_To_Tweet_with_Location ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        public async Task Create_Reply_To_Tweet_with_Location()
        {
            // arrange
            session.Returns(await Json.FromFile("data\\tweets\\singletweetreply.txt"));
            session.ExpectPost("https://api.twitter.com/1.1/statuses/update.json");
            var replytweet = new Tweet
            {
                Id = 193577612956811264,
                User = new User { UserId = 823083 },
                RawText = "Replying to this faked tweet"
            };
            var tweetreply = await session.ReplyToTweet(replytweet, "@migueldeicaza my issue is if an assembly is compiled against System.Json.dll http://t.co/CByp6ds6 it wont work on the iphone", 37.7821120598956, -122.400612831116);

            Assert.IsNotNull(tweetreply);
            Assert.IsTrue(tweetreply.Id == 193579947615453184);
            Assert.IsTrue(tweetreply.InReplyToId == 193577612956811264);
            Assert.IsTrue(tweetreply.InReplyToUserId == 823083);
            tweetreply.Location.Coordinates.Count().ShouldBeEquivalentTo(2);
        }