From 53845e5c47bd149852592f55960859aa9f05bdcf Mon Sep 17 00:00:00 2001 From: purna2 <115491784+purna2@users.noreply.github.com> Date: Wed, 12 Oct 2022 02:59:31 +0530 Subject: [PATCH] Add content for junit (#2371) * Updated and Added the content to 100-junit.md file [#1840](https://github.com/kamranahmedse/developer-roadmap/issues/1840) I added the content to 100-junit.md file of the 106-qa-reporting folder to resolve this issue. Please check into this PR! * Update content/roadmaps/113-qa/content/106-qa-reporting/100-junit.md Co-authored-by: Kamran Ahmed --- .../roadmaps/113-qa/content/106-qa-reporting/100-junit.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/113-qa/content/106-qa-reporting/100-junit.md b/content/roadmaps/113-qa/content/106-qa-reporting/100-junit.md index fd259949f..fb83db117 100644 --- a/content/roadmaps/113-qa/content/106-qa-reporting/100-junit.md +++ b/content/roadmaps/113-qa/content/106-qa-reporting/100-junit.md @@ -1 +1,6 @@ -# Junit \ No newline at end of file +# JUnit + +JUnit is known as a unit testing framework used for the Java programming language. JUnit has been playing a crucial in the development of test-driven development and is one of a family of unit testing frameworks. JUnit is useful to write repeatable tests for your application code units. JUnit stimulates the idea of “testing first, then coding,”. The test approach explicates –test a little + code a little = JUnit. JUnit helps the programmer by increasing the productivity and the stability of the program’s code snippets.That will helps in reducing the time of the tester, which is spent on debugging of the code. + +Free Content +What is JUnit?