Toggle navigation
Home
org.sonarqube.ws.client.WsClient to org.sonar.batch.bootstrap.BatchWsClient
No. of Instances - 18
No. of Commits - 1
No. of Projects - {'sonarqube'}
Hierarchy/Composition: Composition
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Rename Variable
client
to
wsClient
client
to
wsClient
client
to
wsClient
client
to
wsClient
Add or Remove Method invocation
when(ws.wsConnector().call(any(WsRequest.class)))
to
when(ws.call(any(WsRequest.class)))
when(ws.wsConnector().call(any(WsRequest.class)))
to
when(ws.call(any(WsRequest.class)))
ws.wsConnector()
to
ws
inOrder.verify(ws.wsConnector())
to
inOrder.verify(ws)
ws.wsConnector()
to
ws
inOrder.verify(ws.wsConnector())
to
inOrder.verify(ws)
when(ws.wsConnector().call(any(WsRequest.class)))
to
when(ws.call(any(WsRequest.class)))
when(ws.wsConnector().call(any(WsRequest.class)))
to
when(ws.call(any(WsRequest.class)))
when(ws.wsConnector().call(any(WsRequest.class)))
to
when(ws.call(any(WsRequest.class)))
verify(ws.wsConnector(),times(times))
to
verify(ws,times(times))
when(ws.wsConnector().call(any(WsRequest.class)))
to
when(ws.call(any(WsRequest.class)))
client.wsConnector()
to
wsClient