public void GitFS_ForUnmodifiedDirectory_ReturnsClean()
        {
            try
            {
//				dasBlogSandbox.Init();
                Assert.True(true);
            }
            finally
            {
                dasBlogSandbox?.Terminate(false);
            }
        }
 protected override void Dispose(bool disposing)
 {
     try
     {
         if (disposing)
         {
             sandbox?.Terminate(suppressLog: true);
             Runner?.Kill();
             Browser?.Dispose();
         }
     }
     catch (Exception e)
     {
         _ = e;
         // cannot do any logging here.  xunit logger throws an exception complaining that there
         // IDisposable no active test.
         // At the same time it refuses to let the console or debug logger work.
         throw;
     }
 }
 public void Dispose()
 {
     dasBlogSandbox?.Terminate(false);
 }