Files
Terminal.Gui/UnitTests/Views/AutocompleteAppendTests
Thomas e62e2382de WIP:Start refactoring Autocomplete
- Seperate out suggestion generation from popup/append UI
- Reduce coupling and subclassing
2023-03-29 22:58:09 +01:00

24 lines
449 B
Plaintext

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Xunit.Abstractions;
namespace Terminal.Gui.ViewTests {
public class AutocomplteAppendTests {
readonly ITestOutputHelper output;
public AutocomplteAppendTests (ITestOutputHelper output)
{
this.output = output;
}
[Fact]
public void TestRender()
{
}
}
}