Slide 36
Slide 36 text
unit tests are automated tests for
testing individual behaviors fast by
focusing on contracts in isolation
where you enter the system
and start the process EXIT
EXIT
EXIT
ENTRY
the behavior or the results
you get at the end,
either returns a value, or
changes a system state, or
calls a third party system
you should write a test for
each exit point
Reference: The Art of Unit Testing, 3rd Edition, Roy Osherove
https://www.artofunittesting.com/