use of com.navercorp.pinpoint.collector.mapper.grpc.stat.GrpcAgentStatBatchMapper in project pinpoint by naver.
the class GrpcAgentUriStatHandlerV2Test method createMockHandler.
private GrpcAgentStatHandlerV2 createMockHandler(AgentUriStatService agentUriStatService, boolean enableUriStat) {
GrpcAgentStatMapper mockAgentStatMapper = Mockito.mock(GrpcAgentStatMapper.class);
GrpcAgentStatBatchMapper agentStatBatchMapper = new GrpcAgentStatBatchMapper(mockAgentStatMapper);
AgentStatService[] agentStatServices = new AgentStatService[0];
CollectorConfiguration collectorConfiguration = Mockito.mock(CollectorConfiguration.class);
Mockito.when(collectorConfiguration.isUriStatEnable()).thenReturn(enableUriStat);
return new GrpcAgentStatHandlerV2(mockAgentStatMapper, agentStatBatchMapper, new GrpcAgentUriStatMapper(), agentStatServices, agentUriStatService, collectorConfiguration);
}
Aggregations