public void ReflectionExtender_ObjectSetValue_True()
        {
            var instance = new Test();

            const string value = "Hello World!";
            instance.SetPublicProperties(new[]
            {new PropertyWithValue {Name = "Text", Value = value}});

            Assert.That(instance.Text.Equals(value, StringComparison.OrdinalIgnoreCase), Is.True);
        }