BAEL-8939: Adding a Spring Context test in all Spring Modules (changes for around 20 modules.. work in progress..)

This commit is contained in:
sachin29aug
2018-09-09 16:10:21 -04:00
parent 663a2f7593
commit 764dff1bd9
17 changed files with 241 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
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);
}
}