14 lines
206 B
Java
14 lines
206 B
Java
|
|
package org.baeldung;
|
||
|
|
|
||
|
|
import org.junit.Test;
|
||
|
|
|
||
|
|
import com.baeldung.camel.main.App;
|
||
|
|
|
||
|
|
public class SpringContextTest {
|
||
|
|
|
||
|
|
@Test
|
||
|
|
public final void testMain() throws Exception {
|
||
|
|
App.main(null);
|
||
|
|
}
|
||
|
|
}
|