OwnerList uses a map to get owners for a given test name.
| 56 | |
| 57 | // OwnerList uses a map to get owners for a given test name. |
| 58 | type OwnerList struct { |
| 59 | mapping map[string]*OwnerInfo |
| 60 | rng *rand.Rand |
| 61 | } |
| 62 | |
| 63 | // get returns the Owner for the test with the exact name or the first blob match. Nil is returned |
| 64 | // if none are matched. |
nothing calls this directly
no outgoing calls
no test coverage detected