Skip to content
Snippets Groups Projects
Commit dd0eb5a5 authored by Mic's avatar Mic
Browse files

improved/updated Javadoc in JUnit tests

parent 46fa2883
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ import static org.junit.Assert.assertEquals; ...@@ -34,7 +34,7 @@ import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
/** /**
* <p> Base class for {@link clinicService} integration tests. </p> <p> Subclasses should specify Spring context * <p> Base class for {@link ClinicService} integration tests. </p> <p> Subclasses should specify Spring context
* configuration using {@link ContextConfiguration @ContextConfiguration} annotation </p> <p> * configuration using {@link ContextConfiguration @ContextConfiguration} annotation </p> <p>
* AbstractclinicServiceTests and its subclasses benefit from the following services provided by the Spring * AbstractclinicServiceTests and its subclasses benefit from the following services provided by the Spring
* TestContext Framework: </p> <ul> <li><strong>Spring IoC container caching</strong> which spares us unnecessary set up * TestContext Framework: </p> <ul> <li><strong>Spring IoC container caching</strong> which spares us unnecessary set up
......
...@@ -21,7 +21,8 @@ import org.springframework.test.context.ContextConfiguration; ...@@ -21,7 +21,8 @@ import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/** /**
* <p> Integration tests for the {@link JdbcClinicImpl} implementation. </p> <p> </p> * <p> Integration test using the jdbc profile.
* @see AbstractClinicServiceTests AbstractClinicServiceTests for more details. </p>
* *
* @author Thomas Risberg * @author Thomas Risberg
* @author Michael Isvy * @author Michael Isvy
......
...@@ -7,10 +7,8 @@ import org.springframework.test.context.ContextConfiguration; ...@@ -7,10 +7,8 @@ import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/** /**
* <p> Provides the following services: <ul> <li>Injects test dependencies, meaning that we don't need to perform * <p> Integration test using the jpa profile.
* application context lookups. See the setClinic() method. Injection uses autowiring by type.</li> <li>Executes each * @see AbstractClinicServiceTests AbstractClinicServiceTests for more details. </p>
* test method in its own transaction, which is automatically rolled back by default. This means that even if tests
* insert or otherwise change database state, there is no need for a teardown or cleanup script.</li> </ul> <p> </p>
* *
* @author Rod Johnson * @author Rod Johnson
* @author Sam Brannen * @author Sam Brannen
......
...@@ -7,6 +7,8 @@ import org.springframework.test.context.ContextConfiguration; ...@@ -7,6 +7,8 @@ import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/** /**
* <p> Integration test using the 'Spring Data' profile.
* @see AbstractClinicServiceTests AbstractClinicServiceTests for more details. </p>
* @author Michael Isvy * @author Michael Isvy
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment