Files
Terminal.Gui/UnitTests/Views/TabTests.cs
2024-07-19 17:32:53 -06:00

15 lines
336 B
C#

namespace Terminal.Gui.ViewsTests;
public class TabTests
{
[Fact]
public void Constructor_Defaults ()
{
var tab = new Tab ();
Assert.Equal ("Unnamed", tab.DisplayText);
Assert.Null (tab.View);
Assert.Equal (LineStyle.Rounded, tab.BorderStyle);
Assert.True (tab.CanFocus);
}
}