Created
September 3, 2018 15:11
-
-
Save Romeh/45ca467ec85221ed67b80b288f2c407f 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
@ExtendWith(SpringExtension.class) | |
@SpringBootTest | |
public class SpringBootJunit5IntegrationTest { | |
@Autowired | |
private ShowService showService; | |
@Test | |
@DisplayName("Integration test which will get the actual output of text service") | |
public void contextLoads() { | |
assertEquals(showService.getShowLable(), ORIGINAL_OUTPUT); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment