15 lines
206 B
Java
15 lines
206 B
Java
package org.baeldung;
|
|
|
|
|
|
import com.ossez.spring.batch.App;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class SpringContextTest {
|
|
|
|
@Test
|
|
public final void testMain() throws Exception {
|
|
App.main(null);
|
|
}
|
|
}
|