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?