public static void RetweetedByMe()
        {
            OAuthTokens tokens = Configuration.GetTokens();

            TwitterResponse <TwitterStatusCollection> timelineResponse = TwitterTimeline.RetweetedByMe(tokens);

            PerformCommonTimelineTests(timelineResponse);
        }