Esempio n. 1
0
        public void SetPropertyValue_GivenPropertyValue_ShouldSetPropertyValue(string propertyName, object propertyValue, bool convertIfRequired)
        {
            //---------------Set up test pack-------------------
            var fakeReflection = new FakeReflection();

            //---------------Assert Precondition----------------
            //---------------Execute Test ----------------------
            Assert.DoesNotThrow(() => fakeReflection.SetPropertyValue(propertyName, propertyValue, convertIfRequired));
            //---------------Test Result -----------------------
        }
Esempio n. 2
0
        public void DoesPropertyExist_GivenPropertyExists_ShouldReturnTrue()
        {
            //---------------Set up test pack-------------------
            var fakeReflection = new FakeReflection();
            //---------------Assert Precondition----------------
            //---------------Execute Test ----------------------
            var returnValue = fakeReflection.DoesPropertyExist("ValidProperty");

            //---------------Test Result -----------------------
            Assert.IsTrue(returnValue);
        }
Esempio n. 3
0
        public void SetPropertyValue_GivenPropertyDoesNotExist_ShouldThrowException()
        {
            //---------------Set up test pack-------------------
            var fakeReflection = new FakeReflection();
            //---------------Assert Precondition----------------
            //---------------Execute Test ----------------------
            var exception = Assert.Throws <ArgumentException>(() => fakeReflection.SetPropertyValue("InvalidProperty", "TestValue"));

            //---------------Test Result -----------------------
            StringAssert.Contains("Property [InvalidProperty] does not exist on object", exception.Message);
        }
Esempio n. 4
0
        public void SetPropertyValue_GivenPropertyExists_ShouldSetPropertyValue()
        {
            //---------------Set up test pack-------------------
            var oldTestValue   = "Old Value";
            var newTestValue   = "Test Value";
            var fakeReflection = new FakeReflection
            {
                ValidProperty = oldTestValue
            };

            //---------------Assert Precondition----------------
            Assert.AreEqual(oldTestValue, fakeReflection.ValidProperty);
            //---------------Execute Test ----------------------
            fakeReflection.SetPropertyValue("ValidProperty", newTestValue);
            //---------------Test Result -----------------------
            Assert.AreEqual(newTestValue, fakeReflection.ValidProperty);
        }
Esempio n. 5
0
        public void GetPropertyValue_GivenPropertyExists_ShouldReturnPropertyValue()
        {
            //---------------Set up test pack-------------------
            var newTestValue   = "Test Value";
            var fakeReflection = new FakeReflection
            {
                ValidProperty = newTestValue
            };

            //---------------Assert Precondition----------------
            Assert.AreEqual(newTestValue, fakeReflection.ValidProperty);
            //---------------Execute Test ----------------------
            var result = fakeReflection.GetPropertyValue("ValidProperty");

            //---------------Test Result -----------------------
            Assert.AreEqual(newTestValue, result);
        }