Testing Basics

Write small checks to prevent regressions.

Do this: Read the concept below, then try the quiz or activity.

Lesson 20 of 20
95%

Concept

Start with simple unit-style tests for pure functions. Arrange-Act-Assert: set inputs, call the code, check outputs. Automate and run often.

Short Answer

Sketch a test for your average(list) function.