using Xunit; namespace Avalonia.Base.UnitTests { public class AvaloniaObjectTests_AddOwner { [Fact] public void AddOwnered_Property_Retains_Default_Value() { var target = new Class2(); Assert.Equal("foodefault", target.GetValue(Class2.FooProperty)); } private class Class1 : AvaloniaObject { public static readonly StyledProperty FooProperty = AvaloniaProperty.Register( "Foo", "foodefault"); } private class Class2 : AvaloniaObject { public static readonly StyledProperty FooProperty = Class1.FooProperty.AddOwner(); } } }