(blocks []string)
| 517 | } |
| 518 | |
| 519 | func prettyBlocks(blocks []string) string { |
| 520 | var out []string |
| 521 | |
| 522 | for _, b := range blocks { |
| 523 | out = append(out, fmt.Sprintf("%v", b)) |
| 524 | } |
| 525 | |
| 526 | return " " + strings.Join(out, "\n ") |
| 527 | } |
| 528 | |
| 529 | func testGenericRecursive(t *testing.T, beforeErr error, beforeWant []string, list []wrapper, maxDepth int) { |
| 530 | if len(beforeWant) == 0 { |
no outgoing calls
no test coverage detected
searching dependent graphs…