AutocompleteAppendTests 449 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Xunit;
  7. using Xunit.Abstractions;
  8. namespace Terminal.Gui.ViewTests {
  9. public class AutocomplteAppendTests {
  10. readonly ITestOutputHelper output;
  11. public AutocomplteAppendTests (ITestOutputHelper output)
  12. {
  13. this.output = output;
  14. }
  15. [Fact]
  16. public void TestRender()
  17. {
  18. }
  19. }
  20. }