1
2
3
4
5
6
7
8
9
10 package org.mule.module.ibeans.annotations;
11
12 import org.ibeans.annotation.IntegrationBean;
13 import org.junit.Test;
14
15 public class CallVoidReturnTestCase extends AbstractIBeansTestCase
16 {
17 @SuppressWarnings("unused")
18 @IntegrationBean
19 private SearchIBean search;
20
21 @Test
22 public void testReturnVoid() throws Exception
23 {
24 if (isOffline(getClass().getName() + ".testReturnVoid"))
25 {
26 return;
27 }
28
29
30 search.searchGoogleAndReturnVoid("foo");
31 }
32
33 }