skipLoad skips JSON loading of tests matching the pattern.
(pattern string)
| 110 | |
| 111 | // skipLoad skips JSON loading of tests matching the pattern. |
| 112 | func (tm *testMatcher) skipLoad(pattern string) { |
| 113 | tm.skiploadpat = append(tm.skiploadpat, regexp.MustCompile(pattern)) |
| 114 | } |
| 115 | |
| 116 | // fails adds an expected failure for tests matching the pattern. |
| 117 | func (tm *testMatcher) fails(pattern string, reason string) { |
no outgoing calls
no test coverage detected