Add PrintLibraryItem test, suppress Process.Kill exceptions

This commit is contained in:
John Lewin 2016-12-07 13:21:53 -08:00
parent ee7619dd77
commit 153686968f
2 changed files with 45 additions and 1 deletions

View file

@ -161,7 +161,12 @@ namespace MatterHackers.MatterControl.Tests.Automation
{
protected override void Dispose(bool disposing)
{
this.Kill();
try
{
this.Kill();
}
catch { }
base.Dispose(disposing);
}
}