(t *testing.T)
| 195 | } |
| 196 | |
| 197 | func TestQueryCamliType(t *testing.T) { |
| 198 | testQuery(t, func(qt *queryTest) { |
| 199 | fileRef, _ := qt.id.UploadFile("file.txt", "foo", time.Unix(1382073153, 0)) |
| 200 | sq := &SearchQuery{ |
| 201 | Constraint: &Constraint{ |
| 202 | CamliType: "file", |
| 203 | }, |
| 204 | } |
| 205 | qt.wantRes(sq, fileRef) |
| 206 | }) |
| 207 | } |
| 208 | |
| 209 | func TestQueryAnyCamliType(t *testing.T) { |
| 210 | testQuery(t, func(qt *queryTest) { |
nothing calls this directly
no test coverage detected