Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: csharp-best-practices/test-method-names

Language: C#

Severity: Info

Category: Best Practices

Description

Test methods should follow the following guidelines:

  • must be public and not async
  • the name should start with Test

Learn More

Non-Compliant Code Examples

class MyTests {
    [TestMethod]
    void FooBar()
    {

    }

    [TestMethod]
    public async void BlipBlop()
    {

    }
}

Compliant Code Examples

class MyTests {
    [TestMethod]
    public void TestSomething()
    {

    }
}