File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/uk/gov/hmcts/cp/subscription/client Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ static void configureProperties(DynamicPropertyRegistry registry) {
5656 }
5757
5858 @ Test
59- void shouldSendPostRequestToDocumentService () {
59+ void generateOpenApiModels_should_create_ErrorResponse () {
6060 wireMockServer .stubFor (post (urlEqualTo ("/document-service/api/rest/document/metadata" ))
6161 .willReturn (aResponse ()
6262 .withStatus (204 )));
@@ -71,7 +71,7 @@ void shouldSendPostRequestToDocumentService() {
7171 }
7272
7373 @ Test
74- void shouldHandleSuccessfulResponse () {
74+ void should_handle_successful_response () {
7575 wireMockServer .stubFor (post (urlEqualTo ("/document-service/api/rest/document/metadata" ))
7676 .willReturn (aResponse ()
7777 .withStatus (200 )));
@@ -86,7 +86,7 @@ void shouldHandleSuccessfulResponse() {
8686 }
8787
8888 @ Test
89- void shouldSendCorrectPayloadToDocumentService () {
89+ void should_send_correct_payload_to_document_service () {
9090 UUID eventId = UUID .randomUUID ();
9191
9292 wireMockServer .stubFor (post (urlEqualTo ("/document-service/api/rest/document/metadata" ))
You can’t perform that action at this time.
0 commit comments