Package org.candlepin.gutterball.model

Examples of org.candlepin.gutterball.model.Event


        verify(handler, never()).handleDeleted(any(Event.class));
    }

    @Test
    public void testEventManagerNullTarget() {
        Event toHandle = new Event();
        eventManager.handle(toHandle);
        verify(eventCurator).create(eq(toHandle));
        verify(handler, never()).handleCreated(any(Event.class));
        verify(handler, never()).handleUpdated(any(Event.class));
        verify(handler, never()).handleDeleted(any(Event.class));
View Full Code Here

TOP

Related Classes of org.candlepin.gutterball.model.Event

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.