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

18 lines
335 B
C#
Raw Normal View History

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-15 19:13:09 +00:00
public class TestComponent : ComponentAttribute
2024-03-09 20:09:28 +00:00
{
private string _content = "Lorem";
public void SetContent(string content)
{
_content = content;
}
2024-03-15 19:13:09 +00:00
protected override Sketch DrawComponent()
2024-03-09 20:09:28 +00:00
{
return new Sketch(_content);
}
}