Files
spring-boot-rest/messaging-modules/spring-apache-camel/src/test/java/com/baeldung/SpringContextTest.java
Dhawal Kapil c2d6d9f695 JAVA-15787 Created new messaging-modules and saas-modules
- Moved jgroups, rabbitmq, spring-amqp, spring-apache-camel, spring-jms to messaging-modules
- Moved twilio, twitter4j, strip to saas-modules
- Renamed existing saas to jira-rest-integration
2022-11-26 11:54:53 +05:30

14 lines
206 B
Java

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