Skip to main content

10 | Testing

Testing

  • What is the difference between exploratory and manual testing?
  • What is the difference between a unit test and an integration test?
  • What is the keyword that is used in a unit test?
  • What are two commonly used Python test runners?
  • Know what these mean:
        assertEqual()       # tests if two values match
assertNotEqual() # tests if two values don't match
assertTrue() # tests if value is True
assertFalse() # tests if value is False
assertIn() # tests if an item is in a list
assertnotIn() # tests if an item is not in a list