In One Minute : JUnit

in-one-minute-:-junit

JUnit is a unit testing framework for the Java programming language. JUnit has been important in the development of test-driven development, and is one of a family of unit testing frameworks which is collectively known as xUnit that originated with SUnit.

JUnit is linked as a JAR at compile-time. The latest version of the framework, JUnit 5, resides under package org.junit.jupiter. Previous versions JUnit 4 and JUnit 3 were under packages org.junit and junit.framework, respectively.

A JUnit test fixture is a Java object. Test methods must be annotated by the @test annotation. If the situation requires it, it is also possible to define a method to execute before (or after) each (or all) of the test methods with the @BeforeEach (or @AfterEach) and @BeforeAll (or @AfterAll) annotations.

Official Website : https://junit.org/

Total
1
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
start-reinventing-the-wheel,-maybe-your-wheel-will-be-better-than-a-rocket!

Start Reinventing the Wheel, Maybe Your Wheel will be better than a Rocket!

Next Post
445-best-instagram-captions-for-2022:-good,-cool,-funny,-&-cute

445 Best Instagram Captions for 2022: Good, Cool, Funny, & Cute

Related Posts