Skip to content

Commit ab93020

Browse files
committed
Link to Spring Framework Artifacts wiki page
This commit revises the Integration Testing chapter to reference the "Spring Framework Artifacts" wiki page instead of the nonexistent "Dependency Management" section of the reference manual. Closes gh-35890 (cherry picked from commit 45c1cd9)
1 parent a413466 commit ab93020

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

framework-docs/modules/ROOT/pages/testing/integration.adoc

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,25 @@ It is important to be able to perform some integration testing without requiring
55
deployment to your application server or connecting to other enterprise infrastructure.
66
Doing so lets you test things such as:
77

8-
* The correct wiring of your Spring IoC container contexts.
9-
* Data access using JDBC or an ORM tool. This can include such things as the correctness
10-
of SQL statements, Hibernate queries, JPA entity mappings, and so forth.
8+
* The correct wiring of your Spring components.
9+
* Data access using JDBC or an ORM tool.
10+
** This can include such things as the correctness of SQL statements, Hibernate queries,
11+
JPA entity mappings, and so forth.
1112

1213
The Spring Framework provides first-class support for integration testing in the
13-
`spring-test` module. The name of the actual JAR file might include the release version
14-
and might also be in the long `org.springframework.test` form, depending on where you get
15-
it from (see the xref:core/beans/dependencies.adoc[section on Dependency Management]
16-
for an explanation). This library includes the `org.springframework.test` package, which
14+
`spring-test` module. The name of the actual JAR file might include the release version,
15+
depending on where you get it from (see the
16+
{spring-framework-wiki}/Spring-Framework-Artifacts[Spring Framework Artifacts] wiki page
17+
for details). This library includes the `org.springframework.test` package, which
1718
contains valuable classes for integration testing with a Spring container. This testing
1819
does not rely on an application server or other deployment environment. Such tests are
1920
slower to run than unit tests but much faster than the equivalent Selenium tests or
2021
remote tests that rely on deployment to an application server.
2122

2223
Unit and integration testing support is provided in the form of the annotation-driven
23-
xref:testing/testcontext-framework.adoc[Spring TestContext Framework]. The TestContext framework is
24-
agnostic of the actual testing framework in use, which allows instrumentation of tests
25-
in various environments, including JUnit, TestNG, and others.
24+
xref:testing/testcontext-framework.adoc[Spring TestContext Framework]. The TestContext
25+
framework is agnostic of the actual testing framework in use, which allows
26+
instrumentation of tests in various environments, including JUnit, TestNG, and others.
2627

2728
The following section provides an overview of the high-level goals of Spring's
2829
integration support, and the rest of this chapter then focuses on dedicated topics:

0 commit comments

Comments
 (0)