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

Examples of com.sonyericsson.hudson.plugins.gerrit.trigger.events.lifecycle.GerritEventLifecycleListener


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

        gerritHandler.notifyListeners(manualPatchset);

View Full Code Here

TOP

Related Classes of com.sonyericsson.hudson.plugins.gerrit.trigger.events.lifecycle.GerritEventLifecycleListener

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.