java-tutorials/spring-bom/src/test/java/com/baeldung/SpringContextTest.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);
}
}