Пример #1
0
        public void HelpClosure_SetProperty_ResultIsEmptyContent(String actual)
        {
            HelpClosureAttribute attribute = new HelpClosureAttribute();

            attribute.Content = actual;
            Assert.IsEmpty(attribute.Content);
        }
Пример #2
0
        public void HelpClosure_SetProperty_TrimmedContent(String actual)
        {
            HelpClosureAttribute attribute = new HelpClosureAttribute();

            attribute.Content = actual;
            Assert.AreEqual(attribute.Content, "Hello World");
        }
Пример #3
0
        public void HelpClosure_Construction_ResultIsEmptyContent(String actual)
        {
            HelpClosureAttribute attribute = new HelpClosureAttribute(actual);

            Assert.IsEmpty(attribute.Content);
        }