Example #1
0
        public void CreateConstructorMarkup()
        {
            var output         = _outputFormatter.CreateConstructorMarkup("ClassName", new ParameterInfo[0]);
            var expectedOutput = new XElement("Signature", new XElement("Name", "ClassName"), new XElement("Text", "("), new XElement("Text", ")"));

            Assert.That(output.ToString(), Is.EqualTo(expectedOutput.ToString()));
        }