From 04a473d63b75564cd6dac38e21f05aca61494055 Mon Sep 17 00:00:00 2001 From: Jonathan Cook Date: Wed, 2 Dec 2020 03:30:42 +0100 Subject: [PATCH] BAEL-3948 - Fix test(s) in spring-batch which leaves repository.sqlite changed (#10298) * BAEL-4706 - Spring Boot with Spring Batch * BAEL-3948 - Fix test(s) in spring-batch which leaves repository.sqlite changed Co-authored-by: Jonathan Cook --- .../test/java/com/baeldung/SpringContextTest.java | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 spring-batch/src/test/java/com/baeldung/SpringContextTest.java diff --git a/spring-batch/src/test/java/com/baeldung/SpringContextTest.java b/spring-batch/src/test/java/com/baeldung/SpringContextTest.java deleted file mode 100644 index b82bb35daf..0000000000 --- a/spring-batch/src/test/java/com/baeldung/SpringContextTest.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.baeldung; - -import com.baeldung.batch.App; -import org.junit.Test; - -public class SpringContextTest { - - @Test - public void testMain() throws Exception { - App.main(null); - } -}