|
|
|
|
|
by moomin
3781 days ago
|
|
This observation is orthogonal to the original article but: often DRYing tests is a bad idea. Two principal reasons: 1) if you need a lot of boilerplate, you might need to look at refactoring your classes to reduce dependencies 2) non-DRY tests are often easier to read due to increased indirection. None of which means that I don't reserve the right to DRY tests out when I think it's contextually appropriate. |
|
I've been writing Web Applications for a while now. There was only a handful of cases where I needed to repeat the same test case over and over again (authentication being one of them).
If it happens too often, it's a good tell that you're missing a responsability delegation into a concrete module/class somewhere.