Tidy up test harnesses

This commit is contained in:
Adrian Conlon
2024-10-10 11:27:31 +01:00
parent 5c71acc40a
commit 0d695a6d7a
5 changed files with 19 additions and 69 deletions

View File

@@ -11,12 +11,10 @@ namespace M6502.Test
var configuration = new Configuration();
#if DEBUG
configuration.DebugMode;
configuration.DebugMode = false;
#endif
using (var harness = new TestHarness(configuration))
{
harness.Run();
}
var harness = new TestHarness(configuration);
harness.Run();
}
}
}