Skip to content

Commit 186536e

Browse files
committed
Merge pull request #31276 from anthonyvdotbe
* pr/31276: Remove reference to outdated location Closes gh-31276
2 parents 3f1af9b + b1ccb60 commit 186536e

File tree

1 file changed

+8
-8
lines changed
  • spring-boot-project/spring-boot-docs/src/docs/asciidoc/features

1 file changed

+8
-8
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/testing.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ You can use `@DataCassandraTest` to test Cassandra applications.
454454
By default, it configures a `CassandraTemplate`, scans for `@Table` classes, and configures Spring Data Cassandra repositories.
455455
Regular `@Component` and `@ConfigurationProperties` beans are not scanned when the `@DataCassandraTest` annotation is used.
456456
`@EnableConfigurationProperties` can be used to include `@ConfigurationProperties` beans.
457-
(For more about using Cassandra with Spring Boot, see "<<data#data.nosql.cassandra>>", earlier in this chapter.)
457+
(For more about using Cassandra with Spring Boot, see "<<data#data.nosql.cassandra>>".)
458458

459459
TIP: A list of the auto-configuration settings that are enabled by `@DataCassandraTest` can be <<test-auto-configuration#appendix.test-auto-configuration,found in the appendix>>.
460460

@@ -558,7 +558,7 @@ If you prefer your test to run against a real database, you can use the `@AutoCo
558558
You can use `@JooqTest` in a similar fashion as `@JdbcTest` but for jOOQ-related tests.
559559
As jOOQ relies heavily on a Java-based schema that corresponds with the database schema, the existing `DataSource` is used.
560560
If you want to replace it with an in-memory database, you can use `@AutoConfigureTestDatabase` to override those settings.
561-
(For more about using jOOQ with Spring Boot, see "<<data#data.sql.jooq>>", earlier in this chapter.)
561+
(For more about using jOOQ with Spring Boot, see "<<data#data.sql.jooq>>".)
562562
Regular `@Component` and `@ConfigurationProperties` beans are not scanned when the `@JooqTest` annotation is used.
563563
`@EnableConfigurationProperties` can be used to include `@ConfigurationProperties` beans.
564564

@@ -583,7 +583,7 @@ You can use `@DataMongoTest` to test MongoDB applications.
583583
By default, it configures an in-memory embedded MongoDB (if available), configures a `MongoTemplate`, scans for `@Document` classes, and configures Spring Data MongoDB repositories.
584584
Regular `@Component` and `@ConfigurationProperties` beans are not scanned when the `@DataMongoTest` annotation is used.
585585
`@EnableConfigurationProperties` can be used to include `@ConfigurationProperties` beans.
586-
(For more about using MongoDB with Spring Boot, see "<<data#data.nosql.mongodb>>", earlier in this chapter.)
586+
(For more about using MongoDB with Spring Boot, see "<<data#data.nosql.mongodb>>".)
587587

588588
TIP: A list of the auto-configuration settings that are enabled by `@DataMongoTest` can be <<test-auto-configuration#appendix.test-auto-configuration,found in the appendix>>.
589589

@@ -610,7 +610,7 @@ You can use `@DataNeo4jTest` to test Neo4j applications.
610610
By default, it scans for `@Node` classes, and configures Spring Data Neo4j repositories.
611611
Regular `@Component` and `@ConfigurationProperties` beans are not scanned when the `@DataNeo4jTest` annotation is used.
612612
`@EnableConfigurationProperties` can be used to include `@ConfigurationProperties` beans.
613-
(For more about using Neo4J with Spring Boot, see "<<data#data.nosql.neo4j>>", earlier in this chapter.)
613+
(For more about using Neo4J with Spring Boot, see "<<data#data.nosql.neo4j>>".)
614614

615615
TIP: A list of the auto-configuration settings that are enabled by `@DataNeo4jTest` can be <<test-auto-configuration#appendix.test-auto-configuration,found in the appendix>>.
616616

@@ -641,7 +641,7 @@ You can use `@DataRedisTest` to test Redis applications.
641641
By default, it scans for `@RedisHash` classes and configures Spring Data Redis repositories.
642642
Regular `@Component` and `@ConfigurationProperties` beans are not scanned when the `@DataRedisTest` annotation is used.
643643
`@EnableConfigurationProperties` can be used to include `@ConfigurationProperties` beans.
644-
(For more about using Redis with Spring Boot, see "<<data#data.nosql.redis>>", earlier in this chapter.)
644+
(For more about using Redis with Spring Boot, see "<<data#data.nosql.redis>>".)
645645

646646
TIP: A list of the auto-configuration settings that are enabled by `@DataRedisTest` can be <<test-auto-configuration#appendix.test-auto-configuration,found in the appendix>>.
647647

@@ -660,7 +660,7 @@ You can use `@DataLdapTest` to test LDAP applications.
660660
By default, it configures an in-memory embedded LDAP (if available), configures an `LdapTemplate`, scans for `@Entry` classes, and configures Spring Data LDAP repositories.
661661
Regular `@Component` and `@ConfigurationProperties` beans are not scanned when the `@DataLdapTest` annotation is used.
662662
`@EnableConfigurationProperties` can be used to include `@ConfigurationProperties` beans.
663-
(For more about using LDAP with Spring Boot, see "<<data#data.nosql.ldap>>", earlier in this chapter.)
663+
(For more about using LDAP with Spring Boot, see "<<data#data.nosql.ldap>>".)
664664

665665
TIP: A list of the auto-configuration settings that are enabled by `@DataLdapTest` can be <<test-auto-configuration#appendix.test-auto-configuration,found in the appendix>>.
666666

@@ -792,7 +792,7 @@ include::{docs-java}/features/testing/springbootapplications/autoconfiguredsprin
792792
===== Auto-configured Spring Web Services Client Tests
793793
You can use `@WebServiceClientTest` to test applications that call web services using the Spring Web Services project.
794794
By default, it configures a mock `WebServiceServer` bean and automatically customizes your `WebServiceTemplateBuilder`.
795-
(For more about using Web Services with Spring Boot, see "<<io#io.webservices>>", earlier in this chapter.)
795+
(For more about using Web Services with Spring Boot, see "<<io#io.webservices>>".)
796796

797797

798798
TIP: A list of the auto-configuration settings that are enabled by `@WebServiceClientTest` can be <<test-auto-configuration#appendix.test-auto-configuration,found in the appendix>>.
@@ -810,7 +810,7 @@ include::{docs-java}/features/testing/springbootapplications/autoconfiguredwebse
810810
===== Auto-configured Spring Web Services Server Tests
811811
You can use `@WebServiceServerTest` to test applications that implement web services using the Spring Web Services project.
812812
By default, it configures a `MockWebServiceClient` bean that can be used to call your web service endpoints.
813-
(For more about using Web Services with Spring Boot, see "<<io#io.webservices>>", earlier in this chapter.)
813+
(For more about using Web Services with Spring Boot, see "<<io#io.webservices>>".)
814814

815815

816816
TIP: A list of the auto-configuration settings that are enabled by `@WebServiceServerTest` can be <<test-auto-configuration#appendix.test-auto-configuration,found in the appendix>>.

0 commit comments

Comments
 (0)