14 lines
224 B
Java
14 lines
224 B
Java
|
|
package org.baeldung;
|
||
|
|
|
||
|
|
import org.junit.Test;
|
||
|
|
|
||
|
|
import com.baeldung.parent.App;
|
||
|
|
|
||
|
|
public class SpringContextIntegrationTest {
|
||
|
|
|
||
|
|
@Test
|
||
|
|
public final void testMain() throws Exception {
|
||
|
|
App.main(new String[] {});
|
||
|
|
}
|
||
|
|
}
|