|
2 |
edited tags
|
||
|
1 |
|
||
Giving character to your unit testsI have been thinking a lot about unit testing and how to improve the readability of the unit tests. I thought why not give a character to the classes in the unit test to clarify what they do. Here is a simple unit test that I wrote:
Here is the Dave class:
The unit test name clearly serves the purpose. But, maybe I want to dig a little deeper and assign the Wamu and Woodforest accounts to Dave whenever Dave is created. The problem is that it will move away from readability as I will have to use index values to refer to the account. What are your thoughts on making this more readable?
|
||||
