Wednesday, November 15, 2017

What is JUnit


  • Junit is unit testing framework for Java.
  • It is developed by Kent Back and Erich Gamma in 1997.
  • Junit5 is recent version of Junit written on Java 8 version.
  • New Modules has been introduced in Junit5 to make more feature oriented.

No comments:

Junit 5 Architecture

Modules in JUnit 5 : •         junit-jupiter-api: This module defines the API that you need to write your tests. •         ...