@@ -87,7 +87,7 @@ public IList<TestCase> CreateTestCases(Action<TestCase> reportTestCase = null)
8787 {
8888 foreach ( var testCase in suiteTestCasesPair . Value )
8989 {
90- testCase . Properties . Add ( new TestCaseMetaDataProperty ( suiteTestCasesPair . Value . Count , testCases . Count ) ) ;
90+ testCase . Properties . Add ( new TestCaseMetaDataProperty ( suiteTestCasesPair . Value . Count , testCases . Count , testCase . FullyQualifiedName ) ) ;
9191 }
9292 }
9393
@@ -179,7 +179,7 @@ private IList<TestCase> NewCreateTestcases(Action<TestCase> reportTestCase, List
179179 {
180180 foreach ( var testCase in suiteTestCasesPair . Value )
181181 {
182- testCase . Properties . Add ( new TestCaseMetaDataProperty ( suiteTestCasesPair . Value . Count , testCases . Count ) ) ;
182+ testCase . Properties . Add ( new TestCaseMetaDataProperty ( suiteTestCasesPair . Value . Count , testCases . Count , testCase . FullyQualifiedName ) ) ;
183183 reportTestCase ? . Invoke ( testCase ) ;
184184 }
185185 }
@@ -232,7 +232,7 @@ private Dictionary<string, TestCaseLocation> GetTestCaseLocations(IList<TestCase
232232 private TestCase CreateTestCase ( TestCaseDescriptor descriptor )
233233 {
234234 var testCase = new TestCase (
235- descriptor . FullyQualifiedName , _executable , descriptor . DisplayName , "" , 0 ) ;
235+ descriptor . FullyQualifiedName , descriptor . FullyQualifiedName , _executable , descriptor . DisplayName , "" , 0 ) ;
236236 testCase . Traits . AddRange ( GetFinalTraits ( descriptor . DisplayName , new List < Trait > ( ) ) ) ;
237237 return testCase ;
238238 }
@@ -259,14 +259,14 @@ private TestCase CreateTestCase(TestCaseDescriptor descriptor, TestCaseLocation
259259 ns += "." ;
260260
261261 var testCase = new TestCase (
262- ns + descriptor . FullyQualifiedName , _executable , descriptor . DisplayName , location . Sourcefile , ( int ) location . Line ) ;
262+ descriptor . FullyQualifiedName , ns + descriptor . FullyQualifiedName , _executable , descriptor . DisplayName , location . Sourcefile , ( int ) location . Line ) ;
263263 testCase . Traits . AddRange ( GetFinalTraits ( descriptor . DisplayName , location . Traits ) ) ;
264264 return testCase ;
265265 }
266266
267267 _logger . LogWarning ( String . Format ( Resources . LocationNotFoundError , descriptor . FullyQualifiedName ) ) ;
268268 return new TestCase (
269- descriptor . FullyQualifiedName , _executable , descriptor . DisplayName , "" , 0 ) ;
269+ descriptor . FullyQualifiedName , descriptor . FullyQualifiedName , _executable , descriptor . DisplayName , "" , 0 ) ;
270270 }
271271
272272 internal static string GetTestSignatureNamespace ( string signature )
0 commit comments