JUnit 5
Quick Start
- Download junit5.jar using wget if not already downloaded
- Import org.junit.jupiter.api.Test and org.junit.jupiter.api.Assertions
- Create a public void instance method for each test
- Add @Test annotations above each of these methods
- In each test method, use Assertions.assertTrue(condition) or Assertions.assertEquals(expected, actual) to test for expected behavior
- Compile the file containing these test methods with javac -cp junit5.jar:. filename
- Run all tests using java -jar junit5.jar -cp . -c classname
For more information, see the JUnit 5 User Guide.