Ifa.Model.LinkToNextPage.GetText C# (CSharp) Method

GetText() public method

public GetText ( ) : string
return string
        public override string GetText()
        {
            return "More...";
        }

Usage Example

Example #1
0
        public void LinkToNextPage_GetText_Should_Return_The_Correct_Text()
        {
            var linkToNextPage = new LinkToNextPage(1, null, 1, 1);

            var text = linkToNextPage.GetText();

            Assert.That(text, Is.EqualTo("More..."));
        }