Skip to content

Commit

Permalink
Set DisplayName on creating test case, too.
Browse files Browse the repository at this point in the history
  • Loading branch information
xkbeyer committed Sep 29, 2018
1 parent 34a1b38 commit d3f886c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TestAdapter/TestDiscoverer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ private static TestCase LineGroupToTestCase( string exeName, IList<string> lineG
TestCase test = new TestCase(name, new Uri(TestExecutor.ExecutorUriString), exeName)
{
CodeFilePath = path,
LineNumber = lineNumber
LineNumber = lineNumber,
DisplayName = name
};

// Turn tags to traits.
Expand Down

0 comments on commit d3f886c

Please sign in to comment.