(got []plugin.Frame, address uint64, want string)
| 232 | } |
| 233 | |
| 234 | func checkAddress(got []plugin.Frame, address uint64, want string) bool { |
| 235 | if len(got) != 1 { |
| 236 | return false |
| 237 | } |
| 238 | return got[0].Func == want |
| 239 | } |
| 240 | |
| 241 | func TestSetTools(t *testing.T) { |
| 242 | // Test that multiple calls work. |
no outgoing calls
no test coverage detected
searching dependent graphs…