Package org.axonframework.eventhandling.amqp.spring

Examples of org.axonframework.eventhandling.amqp.spring.ListenerContainerFactory


    @Before
    public void setUp() throws Exception {
        mockConnectionFactory = mock(ConnectionFactory.class);
        mockContainer = PowerMockito.mock(SimpleMessageListenerContainer.class);
        whenNew(SimpleMessageListenerContainer.class).withNoArguments().thenReturn(mockContainer);
        testSubject = new ListenerContainerFactory();
        testSubject.setConnectionFactory(mockConnectionFactory);
        PowerMockito.doNothing().when(mockContainer).afterPropertiesSet();
    }
View Full Code Here

TOP

Related Classes of org.axonframework.eventhandling.amqp.spring.ListenerContainerFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.