public void HelpClosure_SetProperty_ResultIsEmptyContent(String actual) { HelpClosureAttribute attribute = new HelpClosureAttribute(); attribute.Content = actual; Assert.IsEmpty(attribute.Content); }
public void HelpClosure_SetProperty_TrimmedContent(String actual) { HelpClosureAttribute attribute = new HelpClosureAttribute(); attribute.Content = actual; Assert.AreEqual(attribute.Content, "Hello World"); }
public void HelpClosure_Construction_ResultIsEmptyContent(String actual) { HelpClosureAttribute attribute = new HelpClosureAttribute(actual); Assert.IsEmpty(attribute.Content); }