(v interface{})
| 1812 | } |
| 1813 | |
| 1814 | func prettyJSON(v interface{}) string { |
| 1815 | b, err := json.MarshalIndent(v, "", " ") |
| 1816 | if err != nil { |
| 1817 | panic(err) |
| 1818 | } |
| 1819 | return string(b) |
| 1820 | } |
| 1821 | |
| 1822 | func TestPlannedQuery(t *testing.T) { |
| 1823 | tests := []struct { |
no outgoing calls
no test coverage detected