Lines Matching full:scaniface
64 scaniface interface{}
93 {s: time.Unix(1, 2).UTC(), d: &scaniface, wantiface: time.Unix(1, 2).UTC()},
171 {s: float64(1.5), d: &scaniface, wantiface: float64(1.5)},
172 {s: int64(1), d: &scaniface, wantiface: int64(1)},
173 {s: "str", d: &scaniface, wantiface: "str"},
174 {s: []byte("byteslice"), d: &scaniface, wantiface: []byte("byteslice")},
175 {s: true, d: &scaniface, wantiface: true},
176 {s: nil, d: &scaniface},
177 {s: []byte(nil), d: &scaniface, wantiface: []byte(nil)},
267 if !reflect.DeepEqual(ct.wantiface, scaniface) {
268 errf("want interface %#v, got %#v", ct.wantiface, scaniface)