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
This commit is contained in:
Dhawal Kapil
2019-07-20 17:03:56 +05:30
committed by Eugen
parent 7755f11bb5
commit b6ae9ec3b4
182 changed files with 3128 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package org.baeldung;
import org.baeldung.batch.App;
import org.junit.Test;
public class SpringContextTest {
@Test
public final void testMain() throws Exception {
App.main(null);
}
}