Created
July 14, 2022 22:35
-
-
Save beyondxscratch/290c73c77e290b611c54f3da5e020661 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
@IntegrationTest | |
class MyIntegrationTests { | |
// ... | |
} | |
@ExtendWith({ | |
MyIntegrationTestExtension.class, | |
SpringExtension.class // Implémenté par Spring | |
}) | |
@Retention(RetentionPolicy.RUNTIME) | |
@interface IntegrationTest { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment