mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
18 lines
315 B
C#
18 lines
315 B
C#
using Xunit.Abstractions;
|
|
|
|
//using static Terminal.Gui.ViewTests.MenuTests;
|
|
|
|
namespace Terminal.Gui.ViewsTests;
|
|
|
|
public class MenuTests ()
|
|
{
|
|
[Fact]
|
|
public void Constructors_Defaults ()
|
|
{
|
|
var menu = new Menuv2 { };
|
|
Assert.Empty (menu.Title);
|
|
Assert.Empty (menu.Text);
|
|
}
|
|
|
|
}
|