Provide support for publishing test execution life-cycle events#22477
Provide support for publishing test execution life-cycle events#22477maverick1601 wants to merge 1 commit intospring-projects:masterfrom
Conversation
|
@maverick1601 Please sign the Contributor License Agreement! Click here to manually synchronize the status of this Pull Request. See the FAQ for frequently asked questions. |
|
@maverick1601 Thank you for signing the Contributor License Agreement! |
|
I noticed there are some code quality violations. Would you mind addressing those in your PR? |
|
I will fix those |
|
Seems like most of them are fixed. There is one violation, because the dummyTestMethod() used in the integration test needs documentation. But for me this is a false positive. |
Thanks |
sbrannen
left a comment
There was a problem hiding this comment.
Looking good!
Please make the requested changes, and I'll then make a final review.
Cheers,
Sam
|
Resolved all review tasks, hopefully. |
Yep. Looks good. I think the only thing you missed is the copyright date for the test classes, but that's not a big deal. 😉 Thanks for making the changes! |
Adds new TestExecutionListener for publishing events to the test application context. These may be consumed by @eventlistener annotated methods to react to the test life-cycle. The test execution listener isn't enabled by default. Implements spring-projects#18490
|
Fixed the test class copyrights, as well. These were all due to the cherry-pick from 2016 ;-) |
|
Thanks for all of the hard work, @maverick1601. I'll see if I can merge this in the coming days. |
Adds new TestExecutionListener for publishing events to the test application context.
These may be consumed by @eventlistener annotated methods to react to the test
life-cycle. The test execution listener isn't enabled by default.
Implements #18490