Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 499 Bytes

AN0005.md

File metadata and controls

30 lines (24 loc) · 499 Bytes

AN0005: Add assertion in test

Property Value
Id AN0005
Category Usage
Default Severity Warning

Example

Code with Diagnostic

[TestMethod]
public void TestMethodName()
{
        int k = 1 + 2;
}

Code with Fix

[TestMethod]
public void TestMethodName()
{
        int k = 1 + 2;
        k.Should().Be(3);
}