diff --git a/spring-framework-reference/src/testing.xml b/spring-framework-reference/src/testing.xml index 73b2489ed4..97177e46d7 100644 --- a/spring-framework-reference/src/testing.xml +++ b/spring-framework-reference/src/testing.xml @@ -5,7 +5,7 @@ Testing
- Introduction to testing + Introduction to Spring Testing Testing is an integral part of enterprise software development. This chapter focuses on the value-add of the IoC principle to
- Unit testing + Unit Testing Dependency Injection should make your code less dependent on the container than it would be with traditional Java EE development. The POJOs @@ -41,7 +41,7 @@ testing support classes.
- Mock objects + Mock Objects
JNDI @@ -78,7 +78,7 @@
- Unit testing support classes + Unit Testing support Classes
General utilities @@ -135,7 +135,7 @@
- Integration testing + Integration Testing
Overview @@ -207,7 +207,7 @@
- Goals of integration testing + Goals of Integration Testing Spring's integration testing support has the following primary goals: @@ -398,7 +398,7 @@
- JDBC testing support + JDBC Testing Support The org.springframework.test.jdbc package contains SimpleJdbcTestUtils, which is a @@ -1868,7 +1868,7 @@ public class SimpleTest {
- PetClinic example + PetClinic Example The PetClinic application, available from the samples repository, illustrates