(t *testing.T, api client.QueueProtocolAPI)
| 328 | } |
| 329 | |
| 330 | func testGetLastHeader(t *testing.T, api client.QueueProtocolAPI) { |
| 331 | _, err := api.GetLastHeader() |
| 332 | if err != nil { |
| 333 | t.Error("Call GetLastHeader Failed.", err) |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | func testLocalGet(t *testing.T, api client.QueueProtocolAPI) { |
| 338 | _, err := api.LocalGet(nil) |
no test coverage detected