Unit test class names

The naming of the test classes themselves and the namespaces they are in depend on the naming conventions that your project follows for classes. However, you should consider putting the name of the class being tested (theĀ System Under Test (SUT) in the name of the class. For example, if you are testing a class named OrderService, consider naming the unit test class OrderServiceTests.