(t *testing.T, a, b any)
| 602 | } |
| 603 | |
| 604 | func compareFunc(t *testing.T, a, b any) { |
| 605 | sf1 := reflect.ValueOf(a) |
| 606 | sf2 := reflect.ValueOf(b) |
| 607 | if sf1.Pointer() != sf2.Pointer() { |
| 608 | t.Error("different functions") |
| 609 | } |
| 610 | } |
| 611 | |
| 612 | func TestListOfRoutes(t *testing.T) { |
| 613 | router := New() |
no test coverage detected