(a, b []string)
| 473 | } |
| 474 | |
| 475 | func stringSliceEqual(a, b []string) bool { |
| 476 | if len(a) != len(b) { |
| 477 | return false |
| 478 | } |
| 479 | for i := range a { |
| 480 | if b[i] != a[i] { |
| 481 | return false |
| 482 | } |
| 483 | } |
| 484 | return true |
| 485 | } |
| 486 | |
| 487 | func BenchmarkTreeGet(b *testing.B) { |
| 488 | h1 := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}) |
no outgoing calls
no test coverage detected