2020-03-20 08:39:48 +01:00
|
|
|
package com.baeldung;
|
2019-10-31 20:43:47 -05:00
|
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
|
|
import com.baeldung.spring.bom.HelloWorldApp;
|
|
|
|
|
|
|
|
|
|
public class SpringContextTest {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public final void testMain() throws Exception {
|
|
|
|
|
HelloWorldApp.main(null);
|
|
|
|
|
}
|
|
|
|
|
}
|