Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 449 Bytes

File metadata and controls

8 lines (6 loc) · 449 Bytes

Unit Testing

Unit testing is the process of testing parts of a program.

  1. Read about unit testing
  2. Learn how to unit test in Python

Practical exercise

Write a Python function with returns True if its input is a prime number and False otherwise. Thoroughly unit test this function. As always, commit your code to GitHub.