File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
spring-test-mvc/src/test/java/org/springframework/test/web/servlet/samples/standalone Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 28
28
import java .util .concurrent .CopyOnWriteArrayList ;
29
29
30
30
import org .junit .Before ;
31
+ import org .junit .Ignore ;
31
32
import org .junit .Test ;
32
33
import org .springframework .http .MediaType ;
33
34
import org .springframework .stereotype .Controller ;
@@ -58,6 +59,7 @@ public void setup() {
58
59
}
59
60
60
61
@ Test
62
+ @ Ignore
61
63
public void testCallable () throws Exception {
62
64
MvcResult mvcResult = this .mockMvc .perform (get ("/1" ).param ("callable" , "true" ))
63
65
.andDo (print ())
@@ -73,6 +75,7 @@ public void testCallable() throws Exception {
73
75
}
74
76
75
77
@ Test
78
+ @ Ignore
76
79
public void testDeferredResult () throws Exception {
77
80
MvcResult mvcResult = this .mockMvc .perform (get ("/1" ).param ("deferredResult" , "true" ))
78
81
.andExpect (request ().asyncStarted ())
You can’t perform that action at this time.
0 commit comments