Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 476 Bytes

AN0006.md

File metadata and controls

27 lines (21 loc) · 476 Bytes

AN0006: Use unit test method naming convention

Property Value
Id AN0006
Category Style
Default Severity Warning

Example

Code with Diagnostic

[TestMethod]
public void BadTestMethodName()
{
}

Code with Fix

[TestMethod]
public void UnitUnderTest_TestCondition_ExpectedOutcome()
{
}