@@ -120,22 +120,22 @@ public class VsTestRunner : ITestDiscoverer, ITestExecutor
120
120
"xunit.v3.runner.utility.netstandard20.dll" ,
121
121
} ;
122
122
123
- public static TestProperty ManagedMethodProperty { get ; } =
123
+ internal static TestProperty ManagedMethodProperty { get ; } =
124
124
TestProperty . Register ( "TestCase.ManagedMethod" , "ManagedMethod" , string . Empty , string . Empty , typeof ( string ) , x => ! string . IsNullOrWhiteSpace ( x as string ) , TestPropertyAttributes . Hidden , typeof ( TestCase ) ) ;
125
125
126
- public static TestProperty ManagedTypeProperty { get ; } =
126
+ internal static TestProperty ManagedTypeProperty { get ; } =
127
127
TestProperty . Register ( "TestCase.ManagedType" , "ManagedType" , string . Empty , string . Empty , typeof ( string ) , x => ! string . IsNullOrWhiteSpace ( x as string ) , TestPropertyAttributes . Hidden , typeof ( TestCase ) ) ;
128
128
129
- public static TestProperty SkipReasonProperty { get ; } =
129
+ internal static TestProperty SkipReasonProperty { get ; } =
130
130
TestProperty . Register ( "XunitSkipReason" , "xUnit.net Skip Reason" , typeof ( string ) , typeof ( VsTestRunner ) ) ;
131
131
132
- public static TestProperty TestCaseExplicitProperty { get ; } =
132
+ internal static TestProperty TestCaseExplicitProperty { get ; } =
133
133
TestProperty . Register ( "XunitTestCaseExplicit" , "xUnit.net Test Case Explicit Flag" , typeof ( bool ) , typeof ( VsTestRunner ) ) ;
134
134
135
- public static TestProperty TestCaseSerializationProperty { get ; } =
135
+ internal static TestProperty TestCaseSerializationProperty { get ; } =
136
136
TestProperty . Register ( "XunitTestCaseSerialization" , "xUnit.net Test Case Serialization" , typeof ( string ) , typeof ( VsTestRunner ) ) ;
137
137
138
- public static TestProperty TestCaseUniqueIDProperty { get ; } =
138
+ internal static TestProperty TestCaseUniqueIDProperty { get ; } =
139
139
TestProperty . Register ( "XunitTestCaseUniqueID" , "xUnit.net Test Case Unique ID" , typeof ( string ) , typeof ( VsTestRunner ) ) ;
140
140
141
141
public void Cancel ( ) =>
@@ -307,7 +307,7 @@ async Task<bool> DiscoverTestsInAssembly<TVisitor>(
307
307
return true ;
308
308
}
309
309
310
- public static IReadOnlyList < IRunnerReporter > GetAvailableRunnerReporters ( LoggerHelper ? logger )
310
+ internal static IReadOnlyList < IRunnerReporter > GetAvailableRunnerReporters ( LoggerHelper ? logger )
311
311
{
312
312
var result = RegisteredRunnerReporters . Get ( typeof ( VsTestRunner ) . Assembly , out var messages ) ;
313
313
@@ -318,7 +318,7 @@ public static IReadOnlyList<IRunnerReporter> GetAvailableRunnerReporters(LoggerH
318
318
return result ;
319
319
}
320
320
321
- public static IRunnerReporter GetRunnerReporter (
321
+ internal static IRunnerReporter GetRunnerReporter (
322
322
LoggerHelper ? logger ,
323
323
RunSettings runSettings )
324
324
{
0 commit comments