From dd06d65517ecd13d1be11ae6e74fa07853eac1ab Mon Sep 17 00:00:00 2001 From: Robert Coltheart Date: Mon, 6 May 2019 15:13:24 +0800 Subject: [PATCH] Fix result reporting for R# (#91) --- .../Execution/VSProxyAssemblySpecificationRunListener.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Machine.Specifications.Runner.VisualStudio/Execution/VSProxyAssemblySpecificationRunListener.cs b/src/Machine.Specifications.Runner.VisualStudio/Execution/VSProxyAssemblySpecificationRunListener.cs index 6edf12e..3bf6365 100644 --- a/src/Machine.Specifications.Runner.VisualStudio/Execution/VSProxyAssemblySpecificationRunListener.cs +++ b/src/Machine.Specifications.Runner.VisualStudio/Execution/VSProxyAssemblySpecificationRunListener.cs @@ -112,6 +112,7 @@ private static TestResult ConverResultToTestResult(TestCase testCase, Result res TestResult testResult = new TestResult(testCase) { ComputerName = Environment.MachineName, Outcome = MapSpecificationResultToTestOutcome(result), + DisplayName = testCase.DisplayName }; if (result.Exception != null)