From 1b5900f5d76519a89ef6e5e63a8f281aa70a10e4 Mon Sep 17 00:00:00 2001 From: Kyle Thorpe Date: Sat, 22 Jan 2022 12:24:52 -0500 Subject: [PATCH] Add content for Unit Testing (#1037) Add a description and resources for Unit Testing --- .../101-backend/content/112-testing/101-unit-testing.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/101-backend/content/112-testing/101-unit-testing.md b/content/roadmaps/101-backend/content/112-testing/101-unit-testing.md index 94ee45331..c2bd3c9da 100644 --- a/content/roadmaps/101-backend/content/112-testing/101-unit-testing.md +++ b/content/roadmaps/101-backend/content/112-testing/101-unit-testing.md @@ -1 +1,7 @@ -# Unit testing \ No newline at end of file +# Unit Testing + +Unit testing is where individual __units__ (modules, functions/methods, routines, etc.) of software are tested to ensure their correctness. This low-level testing ensures smaller components are functionally sound while taking the burden off of higher-level tests. Generally, a developer writes these tests during the development process and they are run as automated tests. + +Free Content +Unit Testing Tutorial +What is Unit Testing?