Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 818 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 818 Bytes

Instructions

The purpose of this exercise is to gain some familiarity with Junit5 and AssertJ assertions. This is achieved by getting you to write some simple tests.

To complete this exercise, simply replace the fail(...) statements with appropriate assertions in line with the TODO comments in each failing test in OrderEventStoreTest.java.

Prepare your environment

This project uses Maven to run the tests. You will need to install Maven and have a JDK 21 installed. Instructions on installing Maven can be found here: Installing Maven

Run the tests

To run the tests you can use the following command:

mvn test

They are failing. Add the appropriate assertions and make the tests pass.