Overview

Writing tests for your code is a vital part of any well-design software project, however there is a school of thought that writing tests before you even start your project is the best approach. This is ‘test-driven development’ and it takes a bit of practice to get the hang of, which will be the goal for today’s class.

Basic Learning Objectives

Before class, you should be able to:

  • Explain the basic philosophy behind test-driven development
  • Define the terms ‘unit test’ and ‘integration test’
  • Explain the basic workflow ‘red-green-refactor’ in Python using unittest

Advanced Learning Objectives

After class, you should be able to:

  • Argue about the pros and cons of writing unit tests as a mechanism for developing and testing functions
  • Use unittest to write tests in Python
  • Identify edge cases for a basic project

Readings

To achieve the basic learning objectives, you can read the following:

Checks

Submit answers to the following through Moodle:

  • What are the steps to test-driven development?
  • What is the basic structure of a test using unittest?
  • How do you run your tests using unittest?