daignosing unit test fail in action

This commit is contained in:
Tigger Kindel
2023-08-12 10:19:10 -06:00
committed by Tig
parent 5d77dd7176
commit fe23b564b3
6 changed files with 64 additions and 56 deletions

View File

@@ -5,7 +5,17 @@ using Xunit;
using Console = Terminal.Gui.FakeConsole;
namespace Terminal.Gui.DriverTests {
public class ColorTests {
public class ColorTests: IDisposable
{
public ColorTests ()
{
ConsoleDriver.RunningUnitTests = true;
}
public void Dispose ()
{
// ... clean up test data from the database ...
}
[Theory]
[InlineData (typeof (FakeDriver))]