Examples of GerritEventListener


Examples of com.sonymobile.tools.gerrit.gerritevents.GerritEventListener

    /**
     * Tests that gerritHandleLifecycle Notifies GerritEventListener.
     */
    @Test
    public void shouldNotifyGerritEventListener() {
        GerritEventListener eventListenerMock = mock(GerritEventListener.class);
        gerritHandler.addListener(eventListenerMock);
        PatchsetCreated patchset = Setup.createPatchsetCreated();

        gerritHandler.notifyListeners(patchset);

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.