GetUserUrl() public method

public GetUserUrl ( ) : string
return string
        public void Given_User_Name_Correct_User_Url_Returned()
        {
            var entry = new SearchEntry { FromUser = "******", ID = 123 };
            var helper = new TwitterSearchEntryHelper(entry);

            var userUrl = helper.GetUserUrl();

            Assert.That(userUrl, Is.EqualTo("https://twitter.com/user"));
        }