From 0a88139c75b154d9e613ef61ddb365be1f031f90 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 7 Nov 2020 22:43:03 +0100 Subject: [PATCH] Excluded from coverage --- FastRngTests/Double/FrequencyAnalysis.cs | 2 ++ FastRngTests/Double/RunningStatistics.cs | 2 ++ FastRngTests/Float/FrequencyAnalysis.cs | 2 ++ FastRngTests/Float/RunningStatistics.cs | 2 ++ 4 files changed, 8 insertions(+) diff --git a/FastRngTests/Double/FrequencyAnalysis.cs b/FastRngTests/Double/FrequencyAnalysis.cs index 57ecf38..7f161dc 100644 --- a/FastRngTests/Double/FrequencyAnalysis.cs +++ b/FastRngTests/Double/FrequencyAnalysis.cs @@ -1,10 +1,12 @@ using System; +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Runtime.CompilerServices; using System.Text; namespace FastRngTests.Double { + [ExcludeFromCodeCoverage] public sealed class FrequencyAnalysis { private readonly uint[] data; diff --git a/FastRngTests/Double/RunningStatistics.cs b/FastRngTests/Double/RunningStatistics.cs index 4558a11..4a6141d 100644 --- a/FastRngTests/Double/RunningStatistics.cs +++ b/FastRngTests/Double/RunningStatistics.cs @@ -1,7 +1,9 @@ using System; +using System.Diagnostics.CodeAnalysis; namespace FastRngTests.Double { + [ExcludeFromCodeCoverage] internal sealed class RunningStatistics { private double previousM; diff --git a/FastRngTests/Float/FrequencyAnalysis.cs b/FastRngTests/Float/FrequencyAnalysis.cs index 7320c61..5166275 100644 --- a/FastRngTests/Float/FrequencyAnalysis.cs +++ b/FastRngTests/Float/FrequencyAnalysis.cs @@ -1,9 +1,11 @@ using System; +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Text; namespace FastRngTests.Float { + [ExcludeFromCodeCoverage] public sealed class FrequencyAnalysis { private readonly uint[] data; diff --git a/FastRngTests/Float/RunningStatistics.cs b/FastRngTests/Float/RunningStatistics.cs index 41a2f4c..13be97e 100644 --- a/FastRngTests/Float/RunningStatistics.cs +++ b/FastRngTests/Float/RunningStatistics.cs @@ -1,7 +1,9 @@ using System; +using System.Diagnostics.CodeAnalysis; namespace FastRngTests.Float { + [ExcludeFromCodeCoverage] internal sealed class RunningStatistics { private float previousM;