java-tutorials/spring-bom/src/test/java/org/baeldung/SpringContextIntegrationTest.java

14 lines
231 B
Java

package org.baeldung;
import org.junit.Test;
import com.baeldung.spring.bom.HelloWorldApp;
public class SpringContextIntegrationTest {
@Test
public final void testMain() throws Exception {
HelloWorldApp.main(null);
}
}