diff --git a/tests/Avalonia.Controls.UnitTests/GridTests.cs b/tests/Avalonia.Controls.UnitTests/GridTests.cs index 5799cb91c4..50335c44ee 100644 --- a/tests/Avalonia.Controls.UnitTests/GridTests.cs +++ b/tests/Avalonia.Controls.UnitTests/GridTests.cs @@ -179,6 +179,5 @@ namespace Avalonia.Controls.UnitTests Assert.False(target.IsMeasureValid); } - } } diff --git a/tests/Avalonia.Controls.UnitTests/SharedSizeScopeTests.cs b/tests/Avalonia.Controls.UnitTests/SharedSizeScopeTests.cs index 715e9da880..c49d587a08 100644 --- a/tests/Avalonia.Controls.UnitTests/SharedSizeScopeTests.cs +++ b/tests/Avalonia.Controls.UnitTests/SharedSizeScopeTests.cs @@ -17,50 +17,50 @@ namespace Avalonia.Controls.UnitTests { } - [Fact] - public void All_Descendant_Grids_Are_Registered_When_Added_After_Setting_Scope() - { - var grids = new[] { new Grid(), new Grid(), new Grid() }; - var scope = new Panel(); - scope.Children.AddRange(grids); - - var root = new TestRoot(); - root.SetValue(Grid.IsSharedSizeScopeProperty, true); - root.Child = scope; - - Assert.All(grids, g => Assert.True(g.HasSharedSizeScope())); - } - - [Fact] - public void All_Descendant_Grids_Are_Registered_When_Setting_Scope() - { - var grids = new[] { new Grid(), new Grid(), new Grid() }; - var scope = new Panel(); - scope.Children.AddRange(grids); - - var root = new TestRoot(); - root.Child = scope; - root.SetValue(Grid.IsSharedSizeScopeProperty, true); - - Assert.All(grids, g => Assert.True(g.HasSharedSizeScope())); - } - - [Fact] - public void All_Descendant_Grids_Are_Unregistered_When_Resetting_Scope() - { - var grids = new[] { new Grid(), new Grid(), new Grid() }; - var scope = new Panel(); - scope.Children.AddRange(grids); - - var root = new TestRoot(); - root.SetValue(Grid.IsSharedSizeScopeProperty, true); - root.Child = scope; - - Assert.All(grids, g => Assert.True(g.HasSharedSizeScope())); - root.SetValue(Grid.IsSharedSizeScopeProperty, false); - Assert.All(grids, g => Assert.False(g.HasSharedSizeScope())); - Assert.Equal(null, root.GetValue(Grid.s_sharedSizeScopeHostProperty)); - } + // [Fact] + // public void All_Descendant_Grids_Are_Registered_When_Added_After_Setting_Scope() + // { + // var grids = new[] { new Grid(), new Grid(), new Grid() }; + // var scope = new Panel(); + // scope.Children.AddRange(grids); + + // var root = new TestRoot(); + // root.SetValue(Grid.IsSharedSizeScopeProperty, true); + // root.Child = scope; + + // Assert.All(grids, g => Assert.True(g.HasSharedSizeScope())); + // } + + // [Fact] + // public void All_Descendant_Grids_Are_Registered_When_Setting_Scope() + // { + // var grids = new[] { new Grid(), new Grid(), new Grid() }; + // var scope = new Panel(); + // scope.Children.AddRange(grids); + + // var root = new TestRoot(); + // root.Child = scope; + // root.SetValue(Grid.IsSharedSizeScopeProperty, true); + + // Assert.All(grids, g => Assert.True(g.HasSharedSizeScope())); + // } + + // [Fact] + // public void All_Descendant_Grids_Are_Unregistered_When_Resetting_Scope() + // { + // var grids = new[] { new Grid(), new Grid(), new Grid() }; + // var scope = new Panel(); + // scope.Children.AddRange(grids); + + // var root = new TestRoot(); + // root.SetValue(Grid.IsSharedSizeScopeProperty, true); + // root.Child = scope; + + // Assert.All(grids, g => Assert.True(g.HasSharedSizeScope())); + // root.SetValue(Grid.IsSharedSizeScopeProperty, false); + // Assert.All(grids, g => Assert.False(g.HasSharedSizeScope())); + // Assert.Equal(null, root.GetValue(Grid.s_sharedSizeScopeHostProperty)); + // } [Fact] public void Size_Is_Propagated_Between_Grids()