diff --git a/src/test/java/org/springframework/samples/petclinic/service/AbstractClinicServiceTests.java b/src/test/java/org/springframework/samples/petclinic/service/AbstractClinicServiceTests.java index e0571f779..d0d9e55ba 100644 --- a/src/test/java/org/springframework/samples/petclinic/service/AbstractClinicServiceTests.java +++ b/src/test/java/org/springframework/samples/petclinic/service/AbstractClinicServiceTests.java @@ -34,7 +34,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /** - *
Base class for {@link clinicService} integration tests.
Subclasses should specify Spring context + *
Base class for {@link ClinicService} integration tests.
Subclasses should specify Spring context * configuration using {@link ContextConfiguration @ContextConfiguration} annotation
* AbstractclinicServiceTests and its subclasses benefit from the following services provided by the Spring * TestContext Framework:
Integration tests for the {@link JdbcClinicImpl} implementation.
+ *
Integration test using the jdbc profile. + * @see AbstractClinicServiceTests AbstractClinicServiceTests for more details.
* * @author Thomas Risberg * @author Michael Isvy diff --git a/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceJpaTests.java b/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceJpaTests.java index 2a3d54485..e024f21fd 100644 --- a/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceJpaTests.java +++ b/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceJpaTests.java @@ -7,10 +7,8 @@ import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; /** - *Provides the following services:
+ *
Integration test using the jpa profile. + * @see AbstractClinicServiceTests AbstractClinicServiceTests for more details.
* * @author Rod Johnson * @author Sam Brannen diff --git a/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceSpringDataJpaTests.java b/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceSpringDataJpaTests.java index b624abca7..e01dda551 100644 --- a/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceSpringDataJpaTests.java +++ b/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceSpringDataJpaTests.java @@ -7,6 +7,8 @@ import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; /** + *Integration test using the 'Spring Data' profile. + * @see AbstractClinicServiceTests AbstractClinicServiceTests for more details.
* @author Michael Isvy */