May I ask what is the recommendation for Extension support in custom JUnit5 TestEngine?
Since extensions come from junit-jupiter-api
(and not junit platform) is it a bad idea to try and support them in custom engines? (And is there some easy way to do that?)
I am writing a custom engine for JBehave tests and it might be really nice to easily reuse some extensions like TestcontainersExtension
for Jupiter, but on the other hand I am wondering if what I am contemplating isn't a bad idea for some reason... Is there some recommendation about this? Or is there some easy way to provide extension support for custom Engines? (Ideally without reimplementing the same code from jupiter engine)