| 12345678910111213141516 |
-
- namespace UnitTests_Parallelizable.ConfigurationTests;
- public class SettingsScopeTests
- {
- [Fact]
- public void Schema_Is_Correct ()
- {
- // Arrange
- var settingsScope = new SettingsScope ();
- // Act
- // Assert
- Assert.Equal ("https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json", settingsScope.Schema);
- }
- }
|