public void GetValueOrInherit_ReturnsValue()
            {
                var property = new StyleProperty <int>(5);

                Assert.AreEqual(5, property.GetValueOrInherit(5));
            }
 public void GetValueOrInherit_ReturnsValue()
 {
     var property = new StyleProperty<int>(5);
     Assert.AreEqual(5, property.GetValueOrInherit(5));
 }