From 859eafe9df1dec2fceb9e0e9bb35ea11edd19b31 Mon Sep 17 00:00:00 2001 From: Archit Sharma <74408634+iArchitSharma@users.noreply.github.com> Date: Tue, 27 Sep 2022 11:04:54 +0000 Subject: [PATCH] Resources added for Unit testing (#1884) --- .../100-functional-testing/unit-testing.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/113-qa/content/100-qa-basics/107-testing-techniques/100-functional-testing/unit-testing.md b/content/roadmaps/113-qa/content/100-qa-basics/107-testing-techniques/100-functional-testing/unit-testing.md index 94ee45331..c2bd3c9da 100644 --- a/content/roadmaps/113-qa/content/100-qa-basics/107-testing-techniques/100-functional-testing/unit-testing.md +++ b/content/roadmaps/113-qa/content/100-qa-basics/107-testing-techniques/100-functional-testing/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?