(b *testing.B)
| 556 | } |
| 557 | |
| 558 | func BenchmarkSanitizeParameterName(b *testing.B) { |
| 559 | name := "my-complex-parameter.name" |
| 560 | for b.Loop() { |
| 561 | SanitizeParameterName(name) |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | func BenchmarkSanitizePythonVariableName(b *testing.B) { |
| 566 | name := "my-complex-parameter.name" |
nothing calls this directly
no test coverage detected