Created
November 21, 2024 19:39
-
-
Save vladdedita/82eacea7f8a808cfc22f788f02083e5c to your computer and use it in GitHub Desktop.
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
public class MyAfterAllExtension implements AfterAllCallback { | |
@Override | |
public void afterAll(ExtensionContext context) { | |
System.out.println("Executing after all tests"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment