verify(this.sessionListenerSupport).fireSessionDisconnected();
}
@Test
public void disconnectConnectionException() throws ConnectionException {
doThrow(new ConnectionException("")).when(this.wagon).disconnectFromRepository();
try {
this.wagon.disconnect();
fail();
} catch (ConnectionException e) {