NUnit2034
Consider using Assert.That(expr, Is.NaN) instead of ClassicAssert.IsNaN(expr)
Topic | Value |
---|---|
Id | NUnit2034 |
Severity | Info |
Enabled | True |
Category | Assertion |
Code | ClassicModelAssertUsageAnalyzer |
Description
Consider using the constraint model, Assert.That(expr, Is.NaN)
, instead of the classic model,
ClassicAssert.IsNaN(expr)
.
Motivation
The classic Assert model contains less flexibility than the constraint model,
so this analyzer marks usages of ClassicAssert.IsNaN
from the classic Assert model.
[Test]
public void Test()
{
ClassicAssert.IsNaN(expression);
}
How to fix violations
The analyzer comes with a code fix that will replace ClassicAssert.IsNaN(expression)
with
Assert.That(expression, Is.NaN)
. So the code block above will be changed into.
[Test]
public void Test()
{
Assert.That(expression, Is.NaN);
}
Configure severity
Via ruleset file
Configure the severity per project, for more info see MSDN.
Via .editorconfig file
# NUnit2034: Consider using Assert.That(expr, Is.NaN) instead of ClassicAssert.IsNaN(expr)
dotnet_diagnostic.NUnit2034.severity = chosenSeverity
where chosenSeverity
can be one of none
, silent
, suggestion
, warning
, or error
.
Via #pragma directive
#pragma warning disable NUnit2034 // Consider using Assert.That(expr, Is.NaN) instead of ClassicAssert.IsNaN(expr)
Code violating the rule here
#pragma warning restore NUnit2034 // Consider using Assert.That(expr, Is.NaN) instead of ClassicAssert.IsNaN(expr)
Or put this at the top of the file to disable all instances.
#pragma warning disable NUnit2034 // Consider using Assert.That(expr, Is.NaN) instead of ClassicAssert.IsNaN(expr)
Via attribute [SuppressMessage]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Assertion",
"NUnit2034:Consider using Assert.That(expr, Is.NaN) instead of ClassicAssert.IsNaN(expr)",
Justification = "Reason...")]