Replies: 1 comment
-
There is no such thing, we only provide a description consumer as you pointed out. If you play with bytebuddy, you might be able to intercept assertion calls (like we do with soft assertions) and gather more information, but it's not out of the box so you will need to provide your own mechanism and make sure your tests use it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Im currently building a custom maven test report plugin that captures unit and integration tests results. While trying to capture as much test information as possible, I am able to capture AssertJ descriptions using something like this >
Is there anything similar in the framework for consuming or capturing the
actual
values fromassetThats
, that are exectued during a test?Iv navigated through the code but cannot find anything. I am able to extend the Assertion class but id opt for a better way
Any help appreciate.
Beta Was this translation helpful? Give feedback.
All reactions