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