13 lines
200 B
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);
|
|
}
|
|
}
|