Beispiel #1
0
        public void have_exactly_one_name_attribute()
        {
            var person = new PersonElement(null);
            var writer = XmlWriter.Create(new MemoryStream());

            Assert.Throws<AtomSpecificationViolationException>(() => person.WriteXml(writer));
            writer.Close();
        }