@@ -12,7 +12,7 @@ namespace Generation.Tests
12
12
{
13
13
public class JsonRpcGenerationTests
14
14
{
15
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
15
+ [ Fact ]
16
16
public async Task Supports_Generating_Notifications_And_Infers_Direction_ExitHandler ( )
17
17
{
18
18
var source = @"
@@ -74,7 +74,7 @@ public static partial class ExitExtensions
74
74
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
75
75
}
76
76
77
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
77
+ [ Fact ]
78
78
public async Task Supports_Generating_Generic_Response_Types ( )
79
79
{
80
80
var source = @"
@@ -182,7 +182,7 @@ public static ILanguageServerRegistry OnExecuteCommand<T>(this ILanguageServerRe
182
182
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
183
183
}
184
184
185
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
185
+ [ Fact ]
186
186
public async Task Should_Report_Diagnostic_If_Missing_Information ( )
187
187
{
188
188
var source = @"
@@ -212,7 +212,7 @@ public interface IExitHandler : IJsonRpcNotificationHandler<ExitParams>
212
212
a . Should ( ) . Throw < EmptyException > ( "cache" ) . WithMessage ( "*Could not infer the request router(s)*" ) ;
213
213
}
214
214
215
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
215
+ [ Fact ]
216
216
public async Task Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler ( )
217
217
{
218
218
var source = @"
@@ -266,7 +266,7 @@ public static partial class CapabilitiesExtensions
266
266
}
267
267
268
268
269
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
269
+ [ Fact ]
270
270
public async Task Supports_Generating_Notifications_ExitHandler ( )
271
271
{
272
272
var source = @"
@@ -327,7 +327,7 @@ public static partial class ExitExtensions
327
327
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
328
328
}
329
329
330
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
330
+ [ Fact ]
331
331
public async Task Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler ( )
332
332
{
333
333
var source = @"
@@ -417,7 +417,7 @@ public static ILanguageServerRegistry OnDidChangeTextDocument(this ILanguageServ
417
417
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
418
418
}
419
419
420
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
420
+ [ Fact ]
421
421
public async Task Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler ( )
422
422
{
423
423
var source = @"
@@ -511,7 +511,7 @@ public static ILanguageServerRegistry ObserveFoldingRange(this ILanguageServerRe
511
511
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
512
512
}
513
513
514
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
514
+ [ Fact ]
515
515
public async Task Supports_Generating_Requests_And_Infers_Direction ( )
516
516
{
517
517
var source = @"
@@ -600,7 +600,7 @@ public static ILanguageServerRegistry ObserveDefinition(this ILanguageServerRegi
600
600
}
601
601
602
602
603
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
603
+ [ Fact ]
604
604
public async Task Supports_Generating_Requests ( )
605
605
{
606
606
var source = @"
@@ -688,7 +688,7 @@ public static ILanguageServerRegistry ObserveDefinition(this ILanguageServerRegi
688
688
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
689
689
}
690
690
691
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
691
+ [ Fact ]
692
692
public async Task Supports_Custom_Method_Names ( )
693
693
{
694
694
var source = @"
@@ -751,7 +751,7 @@ public static partial class LanguageProtocolInitializeExtensions
751
751
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
752
752
}
753
753
754
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
754
+ [ Fact ]
755
755
public async Task Supports_Allow_Derived_Requests ( )
756
756
{
757
757
var source = @"
@@ -833,7 +833,7 @@ public static IDebugAdapterServerRegistry OnAttachRequest<T>(this IDebugAdapterS
833
833
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
834
834
}
835
835
836
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
836
+ [ Fact ]
837
837
public async Task Supports_Allow_Derived_Requests_Nullable ( )
838
838
{
839
839
var source = @"
@@ -997,7 +997,7 @@ public static IDebugAdapterServerRegistry OnAttachRequest<T>(this IDebugAdapterS
997
997
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
998
998
}
999
999
1000
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
1000
+ [ Fact ]
1001
1001
public async Task Supports_Allow_Generic_Types ( )
1002
1002
{
1003
1003
var source = @"
@@ -1079,7 +1079,7 @@ public static IDebugAdapterServerRegistry OnAttachRequest<T>(this IDebugAdapterS
1079
1079
await AssertGeneratedAsExpected < GenerateHandlerMethodsGenerator > ( source , expected ) ;
1080
1080
}
1081
1081
1082
- [ FactWithSkipOn ( SkipOnPlatform . Windows ) ]
1082
+ [ Fact ]
1083
1083
public async Task Supports_Params_Type_As_Source ( )
1084
1084
{
1085
1085
var source = @"
0 commit comments