How can I execute a method once before all tests in all classes start?
I have a program that needs a system property to be set before any test start. Is there any way to do that?
Note: @BeforeClass or @Before are used just for the same test class. In my case, I'm looking for a way to execute a method before all test classes start.