Vadym Yarosh
Vadym Yarosh
This is my use case: create html report object before all tests and write to file after all tests executed: ```java import org.junit.jupiter.api.extension.BeforeAllCallback; import org.junit.jupiter.api.extension.ExtensionContext; public class AfterTestExecutionHook implements BeforeAllCallback...
@Tofel I find the statement "invalid" inappropriate to working code. I agree that it's kind of disadvantage that it's executed for each test class, though I did "lazy initialization" ex:...
@Tofel no worries, thank you for reply. I really missed the point that it's executed for class. And yeah surfed really a lot before found working solution and waiting for...