mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 08:17:53 +01:00
- Seperate out suggestion generation from popup/append UI - Reduce coupling and subclassing
24 lines
449 B
Plaintext
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |