Started on unit test

This commit is contained in:
Tig
2024-03-07 09:04:24 -07:00
parent a518cb37ee
commit 1be3851154
2 changed files with 36 additions and 0 deletions

View File

@@ -69,6 +69,9 @@ public class AutoInitShutdownAttribute : BeforeAfterTestAttribute
{
Debug.WriteLine ($"After: {methodUnderTest.Name}");
// Turn off diagnostic flags in case some test left them on
View.Diagnostics = ViewDiagnosticFlags.Off;
if (AutoInit)
{
Application.Shutdown ();
@@ -145,6 +148,10 @@ public class SetupFakeDriverAttribute : BeforeAfterTestAttribute
public override void After (MethodInfo methodUnderTest)
{
Debug.WriteLine ($"After: {methodUnderTest.Name}");
// Turn off diagnostic flags in case some test left them on
View.Diagnostics = ViewDiagnosticFlags.Off;
Application.Driver = null;
}

View File

@@ -0,0 +1,29 @@
#nullable enable
using Xunit.Abstractions;
namespace Terminal.Gui.ViewTests;
/// <summary>
/// Tests <see cref="View.Diagnostics"/> static property and <see cref="ViewDiagnosticFlags"/> enum.
/// </summary>
/// <param name="output"></param>
[Trait("Category","Output")]
public class DiagnosticTests (ITestOutputHelper output)
{
/// <summary>
/// /// Tests <see cref="View.Diagnostics"/> static property and <see cref="ViewDiagnosticFlags"/> enum.
/// /// </summary>
[Fact]
public void Diagnostics_Sets ()
{
// View.Diagnostics is a static property that returns the current diagnostic flags.
Assert.Equal (ViewDiagnosticFlags.Off, View.Diagnostics);
// View.Diagnostics can be set to a new value.
View.Diagnostics = ViewDiagnosticFlags.Padding;
Assert.Equal (ViewDiagnosticFlags.Padding, View.Diagnostics);
// Ensure we turn off at the end of the test
View.Diagnostics = ViewDiagnosticFlags.Off;
}
}