public void ShouldParseCorrectly() { var actual = LinkListItem.Parse("http://81.95.11.6/download/de/Sandmaennchen.avi;11272262;"); actual.Id.ShouldBe("11272262"); actual.Url.ShouldBe("http://81.95.11.6/download/de/Sandmaennchen.avi"); }
public void ShouldReturnNullOnParseError() { var actual = LinkListItem.Parse("http://81.95.11.6/download/de/Sandmaennchen.avi"); actual.ShouldBeNull(); }