7 lines
252 B
C#
7 lines
252 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
// Excludes the top-level-statement Program class from code coverage.
|
|
// Program.cs is application bootstrapping and cannot be meaningfully unit tested.
|
|
[ExcludeFromCodeCoverage]
|
|
public partial class Program { }
|