(level int)
| 9 | ) |
| 10 | |
| 11 | func positionString(level int) string { |
| 12 | _, file, line, _ := runtime.Caller(level + 1) |
| 13 | return fmt.Sprintf("%v:%v:", filepath.Base(file), line) |
| 14 | } |
| 15 | |
| 16 | func errorIfNotEqual(t *testing.T, v1, v2 interface{}) { |
| 17 | if v1 != v2 { |
no outgoing calls
no test coverage detected
searching dependent graphs…