(b *testing.B)
| 180 | } |
| 181 | |
| 182 | func BenchmarkNormalizeSafeOutputIdentifier(b *testing.B) { |
| 183 | identifier := "create-pull-request-review-comment" |
| 184 | for b.Loop() { |
| 185 | NormalizeSafeOutputIdentifier(identifier) |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | func TestMarkdownToLockFile(t *testing.T) { |
| 190 | tests := []struct { |
nothing calls this directly
no test coverage detected