1 /*
2 * $Id: AsyncSpringEventsTestCase.java 19191 2010-08-25 21:05:23Z tcarlson $
3 * --------------------------------------------------------------------------------------
4 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
5 *
6 * The software in this package is published under the terms of the CPAL v1.0
7 * license, a copy of which has been included with this distribution in the
8 * LICENSE.txt file.
9 */
10
11 package org.mule.module.spring.events;
12
13 public class AsyncSpringEventsTestCase extends SpringEventsTestCase
14 {
15
16 @Override
17 protected String getConfigResources()
18 {
19 return "async-mule-events-app-context.xml";
20 }
21
22 /*
23 * TODO this test seems to suffer from a bug with listener interface handling?
24 * TestAllEventBean needs to implement both ApplicationListener and
25 * MuleEventListener, but when it does so only MuleEvents arrive. If the class
26 * implements only ApplicationListener, only Spring events arrive. Mysteriously
27 * enough this seems to work fine for the synchronous case, which makes me think
28 * there is still something deeper going on.
29 */
30 @Override
31 public void testReceivingAllEvents() throws Exception
32 {
33 // TODO fix synchronisation issue
34 // super.testReceivingAllEvents();
35 }
36
37 }