From 87a8fcc8372d28c372363f1e7e8dd82b8cc911dd Mon Sep 17 00:00:00 2001 From: robokaso Date: Fri, 25 Jul 2008 13:20:27 +0000 Subject: [PATCH] IN PROGRESS - BATCH-693: Refactor samples along domain contours --- .../batch/sample/{dao => support}/JdbcJobRepositoryTests.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename spring-batch-samples/src/test/java/org/springframework/batch/sample/{dao => support}/JdbcJobRepositoryTests.java (98%) diff --git a/spring-batch-samples/src/test/java/org/springframework/batch/sample/dao/JdbcJobRepositoryTests.java b/spring-batch-samples/src/test/java/org/springframework/batch/sample/support/JdbcJobRepositoryTests.java similarity index 98% rename from spring-batch-samples/src/test/java/org/springframework/batch/sample/dao/JdbcJobRepositoryTests.java rename to spring-batch-samples/src/test/java/org/springframework/batch/sample/support/JdbcJobRepositoryTests.java index 8d86f4c40..918e3b564 100644 --- a/spring-batch-samples/src/test/java/org/springframework/batch/sample/dao/JdbcJobRepositoryTests.java +++ b/spring-batch-samples/src/test/java/org/springframework/batch/sample/support/JdbcJobRepositoryTests.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.batch.sample.dao; +package org.springframework.batch.sample.support; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; @@ -40,7 +40,6 @@ import org.springframework.batch.core.JobExecution; import org.springframework.batch.core.JobParameters; import org.springframework.batch.core.repository.JobExecutionAlreadyRunningException; import org.springframework.batch.core.repository.JobRepository; -import org.springframework.batch.sample.support.JobSupport; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.test.context.ContextConfiguration;