public void PPageWithNullUrl_WhenFormatted_BecomesEmpty() { PPage formatting = new PPage { Url = null }; formatting.Format(); Assert.AreEqual(formatting.Url, string.Empty); }
public void PPageWithNullTitle_WhenFormatted_BecomesEmpty() { PPage formatting = new PPage { Title = null }; formatting.Format(); Assert.AreEqual(formatting.Title, string.Empty); }