|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+package hello;
|
|
|
2
|
+
|
|
|
3
|
+import org.junit.Test;
|
|
|
4
|
+import org.junit.runner.RunWith;
|
|
|
5
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
6
|
+import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
|
|
|
7
|
+import org.springframework.boot.test.context.SpringBootTest;
|
|
|
8
|
+import org.springframework.http.MediaType;
|
|
|
9
|
+import org.springframework.test.context.junit4.SpringRunner;
|
|
|
10
|
+import org.springframework.test.web.servlet.MockMvc;
|
|
|
11
|
+import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
|
|
|
12
|
+
|
|
|
13
|
+import static org.hamcrest.Matchers.equalTo;
|
|
|
14
|
+import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
|
|
|
15
|
+import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
|
|
16
|
+
|
|
|
17
|
+@RunWith(SpringRunner.class)
|
|
|
18
|
+@SpringBootTest
|
|
|
19
|
+@AutoConfigureMockMvc
|
|
|
20
|
+public class HelloControllerTest {
|
|
|
21
|
+
|
|
|
22
|
+ @Autowired
|
|
|
23
|
+ private MockMvc mvc;
|
|
|
24
|
+
|
|
|
25
|
+ @Test
|
|
|
26
|
+ public void getHello() throws Exception {
|
|
|
27
|
+ mvc.perform(MockMvcRequestBuilders.get("/").accept(MediaType.APPLICATION_JSON))
|
|
|
28
|
+ .andExpect(status().isOk())
|
|
|
29
|
+ .andExpect(content().string(equalTo("Greetings from Spring Boot!")));
|
|
|
30
|
+ }
|
|
|
31
|
+}
|