(b *testing.B)
| 173 | } |
| 174 | |
| 175 | func BenchmarkNormalizeWorkflowName(b *testing.B) { |
| 176 | name := "weekly-research-workflow.lock.yml" |
| 177 | for b.Loop() { |
| 178 | NormalizeWorkflowName(name) |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | func BenchmarkNormalizeSafeOutputIdentifier(b *testing.B) { |
| 183 | identifier := "create-pull-request-review-comment" |
nothing calls this directly
no test coverage detected