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

Binary file not shown.

View File

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