e28fd3e7c9
update to use the givenX_whenY_thenZ naming convention for tests Co-Authored-By: KevinGilmore <kpg102@gmail.com>
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 void testMain() throws Exception {
|
|
App.main(null);
|
|
}
|
|
}
|