thmue opened a new pull request, #444:
URL: https://github.com/apache/incubator-pekko/pull/444
I added a Junit5 Extension to support Junit5 framework integration.
The extension is activated through an annotation:
@ExtendWith(TestKitJunit5Extension.class)
on the class level.
Additionally, a testKit with a @Junit5TestKit annotation needs to be created.
A builder pattern is used to construct the Testkit instance.
@Junit5TestKit
public ActorTestKit testKit = new Junit5TestKitBuilder().build();
The extension itself uses the Junit5 AfterAllCallback to shutdown the
testkit after all tests are executed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]