Files
Terminal.Gui/Tests/UnitTests/Views/TabTests.cs
Tig fdeaa8331b Fixes #4298 - Updates test namespaces (#4299)
* Refactored test namespaces.
Moved some tests that were in wrong project.
Code cleanup

* Parrallel -> Parallel
2025-10-20 14:14:38 -06:00

15 lines
333 B
C#

namespace UnitTests.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);
}
}