(clusterName, edsServiceName string, secLevel e2e.SecurityLevel, od *v3clusterpb.OutlierDetection)
| 106 | } |
| 107 | |
| 108 | func clusterWithOutlierDetection(clusterName, edsServiceName string, secLevel e2e.SecurityLevel, od *v3clusterpb.OutlierDetection) *v3clusterpb.Cluster { |
| 109 | cluster := e2e.DefaultCluster(clusterName, edsServiceName, secLevel) |
| 110 | cluster.OutlierDetection = od |
| 111 | return cluster |
| 112 | } |
| 113 | |
| 114 | // checkRoundRobinRPCs verifies that EmptyCall RPCs on the given ClientConn, |
| 115 | // connected to a server exposing the test.grpc_testing.TestService, are |
no test coverage detected