Add some basic runtime timings to the 6502 TestHarness class.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-18 00:54:02 +00:00
parent a144cf19a1
commit 999bdf71ff
2 changed files with 39 additions and 5 deletions

View File

@@ -12,8 +12,10 @@ namespace M6502.Test
////configuration.DebugMode = true;
var harness = new TestHarness(configuration);
harness.Run();
using (var harness = new TestHarness(configuration))
{
harness.Run();
}
}
}
}