File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
spring-ws-test/src/main/java/org/springframework/ws/test/client Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3030 * <ol>
3131 * <li>Create a {@code MockWebServiceServer} instance by calling {@link #createServer(WebServiceTemplate)},
3232 * {@link #createServer(WebServiceGatewaySupport)}, or {@link #createServer(ApplicationContext)}.
33- * <li>Set up request expectations by calling {@link #expect(RequestMatcher)}, possibly by using the default
33+ * <li>Set up request expectations by calling {@link #expect(RequestMatcher)}, possibly by using the default
3434 * {@link RequestMatcher} implementations provided in {@link RequestMatchers} (which can be statically imported).
3535 * Multiple expectations can be set up by chaining {@link ResponseActions#andExpect(RequestMatcher)} calls.</li>
3636 * <li>Create an appropriate response message by calling
6666 * public void createServer() throws Exception {
6767 * <strong>mockServer = MockWebServiceServer.createServer(client)</strong>;
6868 * }
69- *
69+ *
7070 * @Test
7171 * public void getCustomerCount() throws Exception {
7272 * Source expectedRequestPayload =
@@ -94,7 +94,7 @@ public class MockWebServiceServer {
9494
9595 private final MockWebServiceMessageSender mockMessageSender ;
9696
97- private MockWebServiceServer (MockWebServiceMessageSender mockMessageSender ) {
97+ public MockWebServiceServer (MockWebServiceMessageSender mockMessageSender ) {
9898 Assert .notNull (mockMessageSender , "'mockMessageSender' must not be null" );
9999 this .mockMessageSender = mockMessageSender ;
100100 }
@@ -172,7 +172,7 @@ public ResponseActions expect(RequestMatcher requestMatcher) {
172172 public void verify () {
173173 mockMessageSender .verifyConnections ();
174174 }
175-
175+
176176
177177
178178
You can’t perform that action at this time.
0 commit comments