I need to provide some kind activity protocol for unit tests to provide additional tracability to non technical actors...
So what i need is that every assertion also create a custom log entry.
Is there any way in AssertJ to achieve this? maybe some kind of listeners, extensions, ...
Currently the team uses plain JUnit 5
- I would really like to introduce AssertJ
.
Actually the wanted behaviour is achieved via "overloading" JUnit Assertions.
So instead of Assertions.assertEquals(expected, actual)
there is a method
MyAssertions.assertEqualsAndLog(Object expected, Object actual) {
log(); //do the logging
Assertions.assertThat(expected, actual)
}
But this is not really the way I want to do this.
Does anyone know a better way to achieve this?
thanks
Okay, unfortunately ther is no mechanism for events/hooks/etc (in combination with assertions). in AssertJ.
I found Issue#1518 which describes the same behavior.