1   /*
2    * $Id: AsyncSpringEventsTestCase.java 7976 2007-08-21 14:26:13Z dirk.olmes $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.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.extras.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          // super.testReceivingAllEvents();
34      }
35  
36  }