when assertions fails, the message returned to the user can be consfusing
using the method describedAs, allows you to pass in a message and possible values to give a better output to help the user make changes to pass the test
You will need to use this at the beginning of the assertion
assertThat(false).describedAs("Message to help with passing test").isTrue();