Browse Source

Merge branch '3.4.x' into 3.5.x

Closes gh-47775
pull/47987/head
Stéphane Nicoll 2 months ago
parent
commit
af07358549
  1. 42
      spring-boot-project/spring-boot-test-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

42
spring-boot-project/spring-boot-test-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

@ -6,6 +6,24 @@ @@ -6,6 +6,24 @@
"description": "Type of existing DataSource to replace.",
"defaultValue": "any"
},
{
"name": "spring.test.jsontesters.enabled",
"type": "java.lang.Boolean",
"description": "Whether auto-configuration of JSON testers is enabled.",
"defaultValue": "true"
},
{
"name": "spring.test.mockmvc.webclient.enabled",
"type": "java.lang.Boolean",
"description": "Whether HTMLUnit's WebClient should be auto-configured when it's on the classpath.",
"defaultValue": true
},
{
"name": "spring.test.mockmvc.webdriver.enabled",
"type": "java.lang.Boolean",
"description": "Whether Selenium's WebDriver should be auto-configured when it's on the classpath.",
"defaultValue": true
},
{
"name": "spring.test.observability.auto-configure",
"type": "java.lang.Boolean",
@ -18,6 +36,30 @@ @@ -18,6 +36,30 @@
"description": "Whether the condition evaluation report should be printed when the ApplicationContext fails to start.",
"defaultValue": true
},
{
"name": "spring.test.webclient.mockrestserviceserver.enabled",
"type": "java.lang.Boolean",
"description": "Whether a MockRestServiceServer should be auto-configured.",
"defaultValue": true
},
{
"name": "spring.test.webclient.register-rest-template",
"type": "java.lang.Boolean",
"description": "Whether a RestTemplate bean should be registered.",
"defaultValue": false
},
{
"name": "spring.test.webservice.client.mockserver.enabled",
"type": "java.lang.Boolean",
"description": "Whether a MockWebServiceServer should be auto-configured.",
"defaultValue": true
},
{
"name": "spring.test.webservice.client.register-web-service-template",
"type": "java.lang.Boolean",
"description": "Whether a WebServiceTemplate bean should be registered.",
"defaultValue": false
},
{
"name": "spring.test.webtestclient.timeout",
"type": "java.time.Duration",

Loading…
Cancel
Save