JUnit 5

Quick Start

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

For more information, see the JUnit 5 User Guide.