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