SettingsScopeTests.cs 376 B

12345678910111213141516
  1. 
  2. namespace UnitTests_Parallelizable.ConfigurationTests;
  3. public class SettingsScopeTests
  4. {
  5. [Fact]
  6. public void Schema_Is_Correct ()
  7. {
  8. // Arrange
  9. var settingsScope = new SettingsScope ();
  10. // Act
  11. // Assert
  12. Assert.Equal ("https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json", settingsScope.Schema);
  13. }
  14. }