Beispiel #1
0
        public void IconTest()
        {
            AtomSource target   = new AtomSource(); // TODO: Initialize to an appropriate value
            AtomIcon   expected = new AtomIcon();
            AtomIcon   actual;

            target.Icon = expected;
            actual      = target.Icon;
            Assert.AreEqual(expected, actual);
        }
        public void XmlNameTest()
        {
            AtomIcon target = new AtomIcon();

            Assert.AreEqual(AtomParserNameTable.XmlIconElement, target.XmlName);
        }