We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 594c51c commit e7f9d51Copy full SHA for e7f9d51
src/test/java/io/romeh/junit/SpringBootJunit5Mockito2/SpringBootJunit5IntegrationTest.java
@@ -4,6 +4,7 @@
4
import static io.romeh.junit.SpringBootJunit5Mockito2.services.TextService.ORIGINAL_OUTPUT;
5
import static org.junit.jupiter.api.Assertions.assertEquals;
6
7
+import org.junit.jupiter.api.DisplayName;
8
import org.junit.jupiter.api.Test;
9
import org.junit.jupiter.api.extension.ExtendWith;
10
import org.springframework.beans.factory.annotation.Autowired;
@@ -20,6 +21,7 @@ public class SpringBootJunit5IntegrationTest {
20
21
private ShowService showService;
22
23
@Test
24
+ @DisplayName("Integration test which will get the actual output of text service")
25
public void contextLoads() {
26
assertEquals(showService.getShowLable(), ORIGINAL_OUTPUT);
27
}
0 commit comments