OwnerMapper finds an owner for a given test name.
| 65 | |
| 66 | // OwnerMapper finds an owner for a given test name. |
| 67 | type OwnerMapper interface { |
| 68 | // TestOwner returns a GitHub username for a test, or "" if none are found. |
| 69 | TestOwner(testName string) string |
| 70 | |
| 71 | // TestSIG returns the name of the Special Interest Group (SIG) which owns the test , or "" if none are found. |
| 72 | TestSIG(testName string) string |
| 73 | } |
| 74 | |
| 75 | // Issue is an interface implemented by structs that can be synced with github issues via the IssueCreator. |
| 76 | type Issue interface { |
no outgoing calls
no test coverage detected