Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-barg committed Oct 10, 2021
1 parent 07b34a4 commit c68365c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Jsonata.Net.Native.TestSuite/UnitTest1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ private static void ProcessAndAddCaseData(string sourceFile, List<TestCaseData>

TestCaseData caseData = new TestCaseData(caseInfo);
//see https://docs.nunit.org/articles/nunit/running-tests/Template-Based-Test-Naming.html
//caseData.SetName(info + " {a}"); can't use {a} to show parametetrs here becasue of https://github.com/nunit/nunit3-vs-adapter/issues/691
caseData.SetName(info);
caseData.SetName(info + " {a}"); // can't use {a} to show parametetrs here becasue of https://github.com/nunit/nunit3-vs-adapter/issues/691
//caseData.SetName(info);
caseData.SetDescription(caseInfo.GetDescription()); //doens not do much for VS Test Executor (
results.Add(caseData);
}
Expand Down

0 comments on commit c68365c

Please sign in to comment.