teamlead-dashboard/tests/TUI.Engine.Tests/Stubs/TestComponent.cs

19 lines
371 B
C#
Raw Normal View History

2024-03-17 04:30:21 +00:00
using TUI.Engine.Attributes;
2024-03-15 19:13:09 +00:00
using TUI.Engine.Components;
2024-03-09 20:09:28 +00:00
2024-03-15 19:13:09 +00:00
namespace TUI.Engine.Tests.Stubs;
2024-03-09 20:09:28 +00:00
2024-03-16 20:31:13 +00:00
public class TestComponent : ComponentBase
2024-03-09 20:09:28 +00:00
{
private string _content = "Lorem";
public void SetContent(string content)
{
_content = content;
}
2024-03-17 04:30:21 +00:00
protected override Sketch DrawComponent(Size minSize)
2024-03-09 20:09:28 +00:00
{
return new Sketch(_content);
}
}