(b *testing.B)
| 83 | } |
| 84 | |
| 85 | func BenchmarkSanitizeErrorMessage(b *testing.B) { |
| 86 | message := "Failed to use API_TOKEN and DATABASE_PASSWORD with GitHubToken" |
| 87 | for b.Loop() { |
| 88 | SanitizeErrorMessage(message) |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | // Additional edge case tests |
| 93 |
nothing calls this directly
no test coverage detected