Files
java-tutorials/spring-boot-ctx-fluent/src/test/java/org/baeldung/SpringContextTest.java
T
Dhawal Kapil b6ae9ec3b4 Story/bael 14304 (#7311)
* BAEL-15951 Moved vavr, JHipster to default profiles

* BAEL-14304 Include the SpringContextIntegrationTest in the default build

- Added SpringContextTest.java in all the modules where SpringContextIntegrationTest already exists

* BAEL-14304 Changes in pmd rule and pom.xml to run UnitTest and SpringContextTest additionally in default profiles

* BAEL-14304 Minor changes
2019-07-20 14:33:56 +03:00

14 lines
213 B
Java

package org.baeldung;
import org.junit.Test;
import com.baeldung.parent.App;
public class SpringContextTest {
@Test
public final void testMain() throws Exception {
App.main(new String[] {});
}
}