Changing from serializing ProcessStartInfo to our own TestStartInfo class, because serializing ProcessStartInfo doesn't really work cross-platform due to unsupported properties.

This commit is contained in:
Livar Cunha 2016-03-01 21:53:51 -08:00
parent 4108920510
commit 9953ab48b3
6 changed files with 31 additions and 16 deletions

View file

@ -19,7 +19,7 @@ namespace Microsoft.Dotnet.Tools.Test.Tests
dotnetTestMessageScenario.TestRunnerMock
.Setup(t => t.GetProcessStartInfo())
.Returns(new ProcessStartInfo())
.Returns(new TestStartInfo())
.Verifiable();
dotnetTestMessageScenario.AdapterChannelMock