Should I change the naming convention for my unit tests?

后端 未结 7 2430
死守一世寂寞
死守一世寂寞 2021-02-20 04:45

I currently use a simple convention for my unit tests. If I have a class named \"EmployeeReader\", I create a test class named \"EmployeeReader.Tests. I then create all the test

相关标签:
7条回答
  • 2021-02-20 05:42

    I feel the second is better because it makes your unit tests more readable to others as long lines make the code look more difficult to read or make it more difficult to skim through. If you still feel there's any ambiguity as for what the test does, you can add comments to clarify this.

    0 讨论(0)
提交回复
热议问题