Excluded from coverage

This commit is contained in:
Thorsten Sommer 2020-11-07 22:43:03 +01:00
parent c8cbe2cec8
commit 0a88139c75
4 changed files with 8 additions and 0 deletions

View File

@ -1,10 +1,12 @@
using System; using System;
using System.Diagnostics.CodeAnalysis;
using System.Linq; using System.Linq;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Text; using System.Text;
namespace FastRngTests.Double namespace FastRngTests.Double
{ {
[ExcludeFromCodeCoverage]
public sealed class FrequencyAnalysis public sealed class FrequencyAnalysis
{ {
private readonly uint[] data; private readonly uint[] data;

View File

@ -1,7 +1,9 @@
using System; using System;
using System.Diagnostics.CodeAnalysis;
namespace FastRngTests.Double namespace FastRngTests.Double
{ {
[ExcludeFromCodeCoverage]
internal sealed class RunningStatistics internal sealed class RunningStatistics
{ {
private double previousM; private double previousM;

View File

@ -1,9 +1,11 @@
using System; using System;
using System.Diagnostics.CodeAnalysis;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace FastRngTests.Float namespace FastRngTests.Float
{ {
[ExcludeFromCodeCoverage]
public sealed class FrequencyAnalysis public sealed class FrequencyAnalysis
{ {
private readonly uint[] data; private readonly uint[] data;

View File

@ -1,7 +1,9 @@
using System; using System;
using System.Diagnostics.CodeAnalysis;
namespace FastRngTests.Float namespace FastRngTests.Float
{ {
[ExcludeFromCodeCoverage]
internal sealed class RunningStatistics internal sealed class RunningStatistics
{ {
private float previousM; private float previousM;