Files
spring-boot-rest/spring-batch/src/test/java/com/baeldung/SpringContextTest.java

13 lines
200 B
Java

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