Exemplo n.º 1
0
        public void ServerAttributeTest()
        {
            var attrib = new ServerAttribute();

            Assert.IsTrue(attrib.error);

            attrib.error = false;

            Assert.IsFalse(attrib.error);
        }
        public void ServerDefaultsToError()
        {
            var attrib = new ServerAttribute();

            Assert.IsTrue(attrib.error);
        }