Slide 4
Slide 4 text
Unit Testing
• A unit is the smallest testable component of an application
• Tests a function, method or class
• Goal is to verify the correctness of units of logic with a variety of conditions
• External dependencies of the unit under test are generally mocked
• Unit tests generally don’t read from or write to disk, render to screen, or receive user
actions from outside the process running the test