From 2ed3d77331500ae0fbd5bd7a4468d3bd07fc0855 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 21 Jan 2011 11:48:30 +0000 Subject: [PATCH] [SPR-7849] fixed link to Goals section and updated EasyMock description. --- spring-framework-reference/src/testing.xml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/spring-framework-reference/src/testing.xml b/spring-framework-reference/src/testing.xml index 0190fb22d6..ed111fde55 100644 --- a/spring-framework-reference/src/testing.xml +++ b/spring-framework-reference/src/testing.xml @@ -1172,7 +1172,7 @@ public class ExtendedTest extends BaseTest { Consider the scenario of testing a HibernateTitleRepository class, as outlined in the Goals section. The next four + linkend="integration-testing-goals">Goals section. The next four code listings demonstrate the use of @Autowired and @Resource on fields and setter methods. The application context configuration is presented @@ -1299,8 +1299,8 @@ public class HibernateTitleRepositoryTests { <property name="sessionFactory" ref="sessionFactory"/> </bean> - <bean id="sessionFactory" - class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> + <bean id="sessionFactory" + class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <!-- configuration elided for brevity --> </bean> @@ -1937,8 +1937,11 @@ public class HibernateClinicTests extends AbstractClinicTests { } - EasyMock: Used - by the Spring Framework in its test suite. + EasyMock: + Java library that provides Mock Objects for interfaces + (and objects through the class extension) by generating them + on the fly using Java's proxy mechanism. + Used by the Spring Framework in its test suite.