14 lines
220 B
Java
14 lines
220 B
Java
package com.baeldung;
|
|
|
|
import org.junit.Test;
|
|
|
|
import com.baeldung.spring.bom.HelloWorldApp;
|
|
|
|
public class SpringContextTest {
|
|
|
|
@Test
|
|
public final void testMain() throws Exception {
|
|
HelloWorldApp.main(null);
|
|
}
|
|
}
|