Пример #1
0
        public void PropertyBagHolder_SetProperty_EscapesCharacters()
        {
            var inputObject = new TestClass();

            inputObject.SetProperty(PropertyName, @"\r""\t");

            inputObject.PropertyNames.Count.Should().Be(1);
            inputObject.ShouldContainProperty(PropertyName);
            inputObject.GetProperty(PropertyName).Should().Be(@"\\r\""\\t");
        }
Пример #2
0
        public void PropertyBagHolder_SetProperty_WorksWithNull()
        {
            var inputObject = new TestClass();

            inputObject.SetProperty <string>(PropertyName, null);

            inputObject.PropertyNames.Count.Should().Be(1);
            inputObject.ShouldContainProperty(PropertyName);
            inputObject.GetProperty(PropertyName).Should().BeNull();
        }
Пример #3
0
        public void PropertyBagHolder_SetProperty_AddsSpecifiedProperty()
        {
            var inputObject = new TestClass();

            inputObject.SetProperty(PropertyName, "x");

            inputObject.PropertyNames.Count.Should().Be(1);
            inputObject.ShouldContainProperty(PropertyName);
            inputObject.GetProperty(PropertyName).Should().Be("x");
        }
Пример #4
0
        public void PropertyBagHolder_SetProperty_OverwritesExistingProperty()
        {
            var inputObject = new TestClass();

            inputObject.SetProperty(PropertyName, "x");

            inputObject.SetProperty(PropertyName, 2);

            inputObject.PropertyNames.Count.Should().Be(1);
            inputObject.ShouldContainProperty(PropertyName);
            inputObject.GetProperty <int>(PropertyName).Should().Be(2);
        }