What are unit tests?
Unit tests check that small bits of code are correctly implemented
What is a keyword that can be used to facilitate unit tests?
assert
What gets printed to the console if a unit test with assert is true?
nothing
What is an example of a testing harness in Python?
the unittest module
What method is used to test equal in the test module?
test.testEqual()
What are the 3 types of tests?
unit
integration
load