This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Custom Extension which executes code only once before all tests are started and after all tests finished. | |
* This is temporary solution until https://github.com/junit-team/junit5/issues/456 will not be released | |
*/ | |
public class SystemSetupExtension implements BeforeAllCallback, ExtensionContext.Store.CloseableResource { | |
private static boolean systemReady = false; | |
/** |