Files
sbox-public/engine/Sandbox.Test/UI/Panel/DisplayNone.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

68 lines
1.5 KiB
C#

using Sandbox.UI;
namespace TestUI.Panels;
[TestClass]
public partial class DisplayNone
{
[TestMethod]
public void BasicNone()
{
var root = new RootPanel();
root.PanelBounds = new Rect( 0, 0, 1000, 1000 );
var panela = root.Add.Panel();
panela.Style.Set( "display: none;" );
var panelb = root.Add.Panel();
panelb.Style.Set( "width: 100px; height: 100px;" );
root.Layout();
// Should be flowing downwards by default
Assert.AreEqual( 0, panela.Box.Left );
Assert.AreEqual( 0, panela.Box.Top );
Assert.AreEqual( false, panela.IsVisible );
Assert.AreEqual( 0, panelb.Box.Left );
Assert.AreEqual( 0, panelb.Box.Top );
}
[TestMethod]
public void BasicSwitch()
{
var root = new RootPanel();
root.PanelBounds = new Rect( 0, 0, 1000, 1000 );
var panela = root.Add.Panel();
panela.Style.Set( "display: flex; width: 100px; height: 100px;" );
var panelb = root.Add.Panel();
panelb.Style.Set( "width: 100px; height: 100px;" );
root.Layout();
// Should be flowing downwards by default
Assert.AreEqual( 0, panela.Box.Left );
Assert.AreEqual( 0, panela.Box.Top );
Assert.AreEqual( true, panela.IsVisible );
Assert.AreEqual( 100, panelb.Box.Left );
Assert.AreEqual( 0, panelb.Box.Top );
panela.Style.Set( "display: none;" );
root.Layout();
Assert.AreEqual( DisplayMode.None, panela.ComputedStyle.Display );
Assert.AreEqual( 0, panela.Box.Left );
Assert.AreEqual( 0, panela.Box.Top );
Assert.AreEqual( false, panela.IsVisible );
Assert.AreEqual( 0, panelb.Box.Left );
Assert.AreEqual( 0, panelb.Box.Top );
}
}