Remove TestCase cleanup temporarily until context disposal is sorted

This commit is contained in:
Dean Herbert 2017-10-18 19:39:48 +09:00
parent b73b4755eb
commit 0dac770e38
1 changed files with 1 additions and 3 deletions

View File

@ -11,15 +11,13 @@ public abstract class OsuTestCase : TestCase
{
public override void RunTest()
{
Storage storage;
using (var host = new HeadlessGameHost($"test-{Guid.NewGuid()}", realtime: false))
{
storage = host.Storage;
host.Run(new OsuTestCaseTestRunner(this));
}
// clean up after each run
storage.DeleteDirectory(string.Empty);
//storage.DeleteDirectory(string.Empty);
}
public class OsuTestCaseTestRunner : OsuGameBase