Exemplo n.º 1
0
        public void EqualsTest( )
        {
            SwProperty _swProperty   = new SwProperty("свойство1", "значение свойства1", swCustomInfoType_e.swCustomInfoText);
            SwProperty _swProperty_2 = new SwProperty("свойство2", "значение свойства1", swCustomInfoType_e.swCustomInfoText);

            Assert.IsFalse(_swProperty == _swProperty_2);
        }
Exemplo n.º 2
0
        public void SwPropertyTest( )
        {
            SwProperty _swProperty = new SwProperty("свойство1", "значение свойства1", swCustomInfoType_e.swCustomInfoText);

            Assert.IsTrue("свойство1" == _swProperty.Name);
            Assert.IsTrue("значение свойства1" == _swProperty.Value);
        }