handling process end on integration tests.

This commit is contained in:
kay.one 2013-08-13 12:53:29 -07:00
parent 1600d51707
commit eb29c5a837
1 changed files with 4 additions and 2 deletions

View File

@ -99,7 +99,7 @@ namespace NzbDrone.Integration.Test
if (eventArgs.Data.Contains("Press enter to exit"))
{
Assert.Fail("Process waiting for input");
process.StandardInput.WriteLine(" ");
}
Console.WriteLine(eventArgs.Data);
@ -111,7 +111,7 @@ namespace NzbDrone.Integration.Test
if (eventArgs.Data.Contains("Press enter to exit"))
{
Assert.Fail("Process waiting for input");
process.StandardInput.WriteLine(" ");
}
Console.WriteLine(eventArgs.Data);
@ -123,6 +123,8 @@ namespace NzbDrone.Integration.Test
process.BeginErrorReadLine();
process.BeginOutputReadLine();
process.Exited += (sender, eventArgs) => Assert.Fail("Process exited");
return process;
}