Files
Terminal.Gui/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs
Tig fdeaa8331b Fixes #4298 - Updates test namespaces (#4299)
* Refactored test namespaces.
Moved some tests that were in wrong project.
Code cleanup

* Parrallel -> Parallel
2025-10-20 14:14:38 -06:00

17 lines
376 B
C#

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);
}
}