testAPI returns a Map
(t *testing.T, method string, route string, statusCode int, data ...Map)
| 94 | |
| 95 | // testAPI returns a Map |
| 96 | func testAPI(t *testing.T, method string, route string, statusCode int, data ...Map) Map { |
| 97 | return testAPIGeneric[Map](t, method, route, statusCode, data...) |
| 98 | } |
| 99 | |
| 100 | // testAPIArray returns []Map |
| 101 | func testAPIArray(t *testing.T, method string, route string, statusCode int, data ...Map) []Map { |
no outgoing calls