Skip to content

Commit 16ec3d2

Browse files
committed
Add missing parameters for constructor calls
1 parent 5967400 commit 16ec3d2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

GoogleTestAdapter/Tests.Common/TestDataCreator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public List<TestCase> GetTestCases(params string[] qualifiedNames)
7070

7171
public TestCase ToTestCase(string name, string executable, string sourceFile = "")
7272
{
73-
return new TestCase(name, executable, name, sourceFile, 0);
73+
return new TestCase(name, name,executable, name, sourceFile, 0);
7474
}
7575

7676
public TestCase ToTestCase(string name)
@@ -109,7 +109,7 @@ public IEnumerable<TestCase> CreateDummyTestCasesFull(string[] qualifiedNamesToR
109109
{
110110
if (qualifiedNamesToRun.Contains(testCase.FullyQualifiedName))
111111
{
112-
testCase.Properties.Add(new TestCaseMetaDataProperty(suiteTestCasePair.Value.Count, allQualifiedNames.Length));
112+
testCase.Properties.Add(new TestCaseMetaDataProperty(suiteTestCasePair.Value.Count, allQualifiedNames.Length, testCase.FullyQualifiedName));
113113
testCases.Add(testCase);
114114
}
115115
}

0 commit comments

Comments
 (0)