public void TestGetUrlWithPageNoGivenExistingQueryStringWithExpectedParam() { const string expected = "http://testurl:80/?otherParam=567&testParam=155"; var pagination = new DfcPagination("testUrl/?otherParam=567&testParam=1", 100, 5, "testParam", true); var actual = pagination.GetUrlWithPageNo(155); expected.IsSame(actual); }
public void TestGetUrlWithPageNoGivenNoQueryString() { const string expected = "http://testurl:80/?testParam=155"; var pagination = new DfcPagination("testUrl", 100, 5, "testParam", true); var actual = pagination.GetUrlWithPageNo(155); expected.IsSame(actual); }