public void IsNextLinkReturnsTrueForNextLink( Uri href) { bool actual = AtomLink.CreateNextLink(href).IsNextLink; Assert.True(actual, "Should be next link."); }
public void CreateNextLinkReturnsCorrectResult( AtomLink link) { AtomLink actual = AtomLink.CreateNextLink(link.Href); var expected = link.WithRel("next"); Assert.Equal(expected, actual); }