Chapter 07: Writing Test Code: Difference between revisions

Line 51: Line 51:
     /                  \
     /                  \
     /    Unit Tests      \
     /    Unit Tests      \
   /____________________\</pre>
   /______________________\</pre>
'''Unit Tests (70%)''': - Fast execution (&lt; 1 second) - Test individual components in isolation - Use mocking for dependencies - Focus on business logic
'''Unit Tests (70%)''': - Fast execution (&lt; 1 second) - Test individual components in isolation - Use mocking for dependencies - Focus on business logic


Line 59: Line 59:


<span id="testing-philosophy"></span>
<span id="testing-philosophy"></span>
=== 7.1.3 Testing Philosophy ===
=== 7.1.3 Testing Philosophy ===