We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab23f9 commit c5768a2Copy full SHA for c5768a2
index.html
@@ -96,7 +96,7 @@ <h2 id="how" class="content slide">how?</h2>
96
<li> keep tests simple, new test = next smallest step on your way to full feature</li>
97
<li> keep tests dumb, just test states, no logic inside tests</li>
98
<li> use mocks for dependencies (develop with use of interfaces, so that implementation can be swapped!)</li>
99
- <li> it's good idea to create a few project-wide abstract classes for unit tests, as they will be reused a lot, create little DSL</li>
+ <li> it's a good idea to create a few project-wide abstract classes for unit tests, as they will be reused a lot, create little DSL</li>
100
<li> too much 'verify' calls is a code smell</li>
101
<li> too much asserts in single method is a code smell (debatable tho)</li>
102
</ul>
0 commit comments