Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

What is JUnit 5?

JUnit

...

is

...

one

...

of

...

the

...

most

...

popular

...

unit-testing

...

frameworks

...

in

...

the

...

Java

...

ecosystem.

...

Unlike previous versions of JUnit, JUnit 5 is composed of several different modules from three different sub-projects.

...

 Example project structure 

This is the basic template: 


Code Block
.
├── pom.xml
└── src
    ├── main
    │   ├── java
    │   │   └── SourceCodeClass.java
    │   └── resources
    └── test
        └── java
            └── TestClass.java

...