mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
* Refactored test namespaces. Moved some tests that were in wrong project. Code cleanup * Parrallel -> Parallel
17 lines
376 B
C#
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);
|
|
}
|
|
}
|