(t *testing.T)
| 207 | } |
| 208 | |
| 209 | func TestQueryAnyCamliType(t *testing.T) { |
| 210 | testQuery(t, func(qt *queryTest) { |
| 211 | fileRef, _ := qt.id.UploadFile("file.txt", "foo", time.Unix(1382073153, 0)) |
| 212 | |
| 213 | sq := &SearchQuery{ |
| 214 | Constraint: &Constraint{ |
| 215 | AnyCamliType: true, |
| 216 | }, |
| 217 | } |
| 218 | qt.wantRes(sq, fileRef) |
| 219 | }) |
| 220 | } |
| 221 | |
| 222 | func TestQueryBlobSize(t *testing.T) { |
| 223 | testQuery(t, func(qt *queryTest) { |
nothing calls this directly
no test coverage detected