HomeSort by relevance Sort by last modified time
    Searched defs:pets (Results 1 - 8 of 8) sorted by null

  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
UserAndAllPets.java 28 public List<Pet> pets; field in class:UserAndAllPets
UserWithPetsAndToys.java 28 public List<PetAndToys> pets; field in class:UserWithPetsAndToys
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
TestUtil.java 76 Pet[] pets = new Pet[count]; local
80 pets[i] = pet;
82 return pets;
PojoWithRelationTest.java 54 Pet[] pets = TestUtil.createPetsForUser(user.getId(), user.getId() * 10, local
56 mPetDao.insertAll(pets);
57 userPets[user.getId() - 1] = pets;
62 assertThat(usersAndPets.get(0).pets, is(Collections.<Pet>emptyList()));
65 assertThat(usersAndPets.get(1).pets, is(Arrays.asList(userPets[1])));
68 assertThat(usersAndPets.get(2).pets, is(Arrays.asList(userPets[2])));
115 List<Toy> toys = first.pets.get(0).toys;
118 assertThat(userWithPetsAndToys.get(1).pets.get(0).toys, is(Collections.<Toy>emptyList()));
134 assertThat(userAndAllPets.get(0).pets, is(Arrays.asList(pets_1)));
135 assertThat(userAndAllPets.get(2).pets, is(Arrays.asList(pets_1)))
197 List<Pet> pets = new ArrayList<>(); local
213 final List<Pet> pets = new ArrayList<>(); local
    [all...]
RawQueryTest.java 123 Pet[] pets = TestUtil.createPetsForUser(3, 1, 1); local
125 mPetDao.insertAll(pets);
129 assertThat(received.getPet(), is(pets[0]));
136 Pet[] pets = TestUtil.createPetsForUser(3, 1, 10); local
137 mPetDao.insertAll(pets);
142 assertThat(result.pets, is(Arrays.asList(pets)));
179 Pet[] pets = TestUtil.createPetsForUser(3, 1, 1); local
181 mPetDao.insertAll(pets);
191 Pet[] pets = TestUtil.createPetsForUser(3, 1, 2) local
230 Pet[] pets = TestUtil.createPetsForUser(3, 1, 2); local
278 Pet[] pets = TestUtil.createPetsForUser(3, 1, 5); local
    [all...]
LiveDataQueryTest.java 207 Pet[] pets = TestUtil.createPetsForUser(3, 1, 2); local
208 mPetDao.insertAll(pets);
212 assertThat(withPets.pets, is(Arrays.asList(pets)));
RxJava2Test.java 398 final Pet[] pets = TestUtil.createPetsForUser(3, 1, 2); local
399 mPetDao.insertAll(pets);
405 && userAndAllPets.pets.equals(Arrays.asList(pets));
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/paging/
DataSourceFactoryTest.java 196 Pet[] pets = TestUtil.createPetsForUser(3, 1, 2); local
197 mPetDao.insertAll(pets);
202 assertThat(withPets.pets, is(Arrays.asList(pets)));

Completed in 251 milliseconds