diff --git a/TestAdapterTest/Mocks/MockFrameworkHandle.cs b/TestAdapterTest/Mocks/MockFrameworkHandle.cs index 919b9ae..6755f40 100644 --- a/TestAdapterTest/Mocks/MockFrameworkHandle.cs +++ b/TestAdapterTest/Mocks/MockFrameworkHandle.cs @@ -29,7 +29,8 @@ public struct TestMessage { public int LaunchProcessWithDebuggerAttached( string filePath, string workingDirectory, string arguments, IDictionary environmentVariables ) { - throw new NotImplementedException(); + CatchTestAdapter.ProcessRunner.RunProcess( filePath, arguments, workingDirectory ); + return 0; } public void RecordAttachments( IList attachmentSets )