(storeTypes []storepb.StatementType)
| 1299 | } |
| 1300 | |
| 1301 | func convertStatementTypesToV1(storeTypes []storepb.StatementType) []v1pb.StatementType { |
| 1302 | result := make([]v1pb.StatementType, len(storeTypes)) |
| 1303 | for i, t := range storeTypes { |
| 1304 | result[i] = v1pb.StatementType(t) |
| 1305 | } |
| 1306 | return result |
| 1307 | } |
| 1308 | |
| 1309 | func convertToPlanCheckRunResultStatus(status storepb.Advice_Status) v1pb.Advice_Level { |
| 1310 | switch status { |
no outgoing calls
no test coverage detected