(b *testing.B)
| 563 | } |
| 564 | |
| 565 | func BenchmarkSanitizePythonVariableName(b *testing.B) { |
| 566 | name := "my-complex-parameter.name" |
| 567 | for b.Loop() { |
| 568 | SanitizePythonVariableName(name) |
| 569 | } |
| 570 | } |
| 571 | |
| 572 | func BenchmarkSanitizeToolID(b *testing.B) { |
| 573 | toolID := "mcp-notion-server-mcp" |
nothing calls this directly
no test coverage detected