ensured everything worked after merge..

This commit is contained in:
Josh Long
2011-08-17 02:29:19 -07:00
parent dc5d821aee
commit 197021cd63
2 changed files with 6 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ public class CqClientConfiguration {
@ServiceActivator
public void handleMessage(Message<CqEvent> eventMessage) throws MessagingException {
CqEvent cqEvent = eventMessage.getPayload();
log.info("Received an event from the continuous query adapter: " + cqEvent);
System.out.println("Received an event from the continuous query adapter: " + cqEvent) ;
}
};
}

View File

@@ -12,11 +12,14 @@ import java.util.List;
import java.util.Set;
/**
* Tests the Gemfire {@link org.springframework.integration.store.MessageGroupStore} implementation, {@link org.springframework.integration.gemfire.store.GemfireMessageGroupStore}
* Tests the Gemfire {@link org.springframework.integration.store.MessageGroupStore} implementation,
* {@link org.springframework.integration.gemfire.store.GemfireMessageGroupStore}.
*
* It tests the {@link org.springframework.integration.store.MessageGroupStore} by sending 10 batches of letters (all of the same width),
* and then counting on the other end that indeed all 10 batches arrived and that all letters expected are there.
* *
* @author Josh Long
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(loader = AnnotationConfigContextLoader.class, classes = {GemfireMessageGroupStoreTestConfiguration.class})
public class GemfireMessageGroupStoreTest {