FileSystemColorProviderTests.cs 272 B

1234567891011121314
  1. using Xunit;
  2. namespace Terminal.Gui.FileServicesTests {
  3. public class FileSystemColorProviderTests
  4. {
  5. [Fact]
  6. public void CanConstruct()
  7. {
  8. var prov = new FileSystemColorProvider();
  9. Assert.NotNull(prov);
  10. }
  11. }
  12. }