Package com.sonyericsson.hudson.plugins.gerrit.trigger.events

Examples of com.sonyericsson.hudson.plugins.gerrit.trigger.events.ManualPatchsetCreated.addListener()


     */
    @Test
    public void shouldNotifyLifecycleListener() {
        GerritEventLifecycleListener lifecycleListenerMock = mock(GerritEventLifecycleListener.class);
        ManualPatchsetCreated manualPatchset = Setup.createManualPatchsetCreated();
        manualPatchset.addListener(lifecycleListenerMock);

        gerritHandler.notifyListeners(manualPatchset);

        InOrder inOrder = inOrder(lifecycleListenerMock);
        inOrder.verify(lifecycleListenerMock).triggerScanStarting(manualPatchset);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.