[JAVA-958] Standardize packages in spring-batch module

This commit is contained in:
dupirefr
2020-03-20 08:06:25 +01:00
parent 31d88cba38
commit e368815ec8
47 changed files with 106 additions and 102 deletions

View File

@@ -0,0 +1,12 @@
package com.baeldung;
import com.baeldung.batch.App;
import org.junit.Test;
public class SpringContextTest {
@Test
public void testMain() throws Exception {
App.main(null);
}
}