From e35cbad2a447bf2eb3767205f5d3c1a93b0ee04c Mon Sep 17 00:00:00 2001 From: Jared Ezzet Hasson Date: Mon, 29 Oct 2018 08:44:06 -0600 Subject: [PATCH] Update index.md (#20312) Added further description on unit testing --- guide/english/software-engineering/unit-tests/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/software-engineering/unit-tests/index.md b/guide/english/software-engineering/unit-tests/index.md index d25f064e26..0a17557d01 100644 --- a/guide/english/software-engineering/unit-tests/index.md +++ b/guide/english/software-engineering/unit-tests/index.md @@ -6,6 +6,7 @@ title: Unit Tests Unit testing is a type of testing which is found at the bottom of the software testing pyramid. It involves breaking the codebase down into smaller parts (or units) and testing those in isolation. Depending on the type of programming language (or paradigm) these can be against anything you define as a unit, although the most common practice is against functions. +A unit is often seen as the smallest piece of your code that can be accurately tested. ### Why do it?