1+ #pragma warning disable MA0048 // File name must match type name
2+ #pragma warning disable SA1649 // File name should match first type name
3+ #pragma warning disable MA0047 // Declare types in namespaces
4+ #pragma warning disable S3903 // Types should be defined in named namespaces
5+
16using Atc . Azure . Messaging . EventHub ;
27using Atc . Azure . Messaging . ServiceBus ;
38
2328
2429app . Run ( ) ;
2530
26- #pragma warning disable MA0048 // File name must match type name
27- #pragma warning disable SA1649 // File name should match first type name
28- #pragma warning disable MA0047 // Declare types in namespaces
29- #pragma warning disable S3903 // Types should be defined in named namespaces
30-
31+ [ System . Diagnostics . CodeAnalysis . ExcludeFromCodeCoverage ]
3132internal class SendDataHandler
3233{
3334 private readonly IEventHubPublisher eventHubPublisher ;
@@ -55,6 +56,11 @@ public async Task<Response> Post(Request request)
5556 }
5657}
5758
59+ [ System . Diagnostics . CodeAnalysis . ExcludeFromCodeCoverage ]
5860internal record Request ( string A , string B , string C ) ;
5961
60- internal record Response ( string Id , string A , string B , string C ) ;
62+ [ System . Diagnostics . CodeAnalysis . ExcludeFromCodeCoverage ]
63+ internal record Response ( string Id , string A , string B , string C ) ;
64+
65+ [ System . Diagnostics . CodeAnalysis . ExcludeFromCodeCoverage ]
66+ public static partial class Program { }
0 commit comments