// Copyright (c) The Perspex Project. All rights reserved. // Licensed under the MIT license. See licence.md file in the project root for full license information. using Perspex.Controls; namespace Perspex.Layout.UnitTests { internal class TestLayoutRoot : Decorator, ILayoutRoot { public TestLayoutRoot() { ClientSize = new Size(500, 500); } public Size ClientSize { get; set; } public Size MaxClientSize => Size.Infinity; public double LayoutScaling => 1; } }