mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
15 lines
336 B
C#
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);
|
|
}
|
|
}
|