From b7369e3fcde46cfa2c4a7251e51b6fe89eb335b1 Mon Sep 17 00:00:00 2001 From: Anja Virkkunen Date: Mon, 2 Mar 2026 10:03:12 +0200 Subject: [PATCH] Rename 'Types of tests' as 'Testing vocabulary' --- content/motivation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/motivation.md b/content/motivation.md index 5e79685..2224b13 100644 --- a/content/motivation.md +++ b/content/motivation.md @@ -125,7 +125,7 @@ Use the collaborative notes to answer these questions: --- -## Types of tests +## Testing vocabulary * Test functions one at a time - **Unit tests** @@ -134,7 +134,7 @@ Use the collaborative notes to answer these questions: * Test the whole thing running - **End-to-end tests** * For example, running on sample data. -* Check same results as before - **Regression tests** +* Check results are the same as before - **Regression tests** * Write test first (the output), then write code to make test pass - **Test-driven development**