Skip to content

Commit

Permalink
Required requestBody in Spring and vert.x tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Azquelt committed May 31, 2024
1 parent bf7a000 commit d8de45b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"/greeting/greet" : {
"post" : {
"requestBody" : {
"required": true,
"content" : {
"application/json" : {
"schema" : {
Expand All @@ -29,6 +30,7 @@
"/greeting/greetWithResponse" : {
"post" : {
"requestBody" : {
"required": true,
"content" : {
"application/json" : {
"schema" : {
Expand All @@ -54,6 +56,7 @@
"/greeting/greetWithResponseTyped" : {
"post" : {
"requestBody" : {
"required": true,
"content" : {
"application/json" : {
"schema" : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
}
} ],
"requestBody" : {
"required": true,
"content" : {
"application/json" : {
"schema" : {
Expand Down Expand Up @@ -45,6 +46,7 @@
}
} ],
"requestBody" : {
"required": true,
"content" : {
"application/json" : {
"schema" : {
Expand Down Expand Up @@ -78,6 +80,7 @@
}
} ],
"requestBody" : {
"required": true,
"content" : {
"application/json" : {
"schema" : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"/greeting/greet": {
"post": {
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
Expand All @@ -29,6 +30,7 @@
"/greeting/greetWithResponse": {
"post": {
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
}
} ],
"requestBody" : {
"required": true,
"content" : {
"application/json" : {
"schema" : {
Expand Down Expand Up @@ -45,6 +46,7 @@
}
} ],
"requestBody" : {
"required": true,
"content" : {
"application/json" : {
"schema" : {
Expand Down

0 comments on commit d8de45b

Please sign in to comment.