This commit is contained in:
Kushagra Thapar 2020-03-31 23:02:33 -07:00
Родитель 17047a514c
Коммит 9bdaebd6fb
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -18,6 +18,7 @@ import org.junit.After;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
@ -98,7 +99,8 @@ public class IntegerIdDomainRepositoryIT {
@Test
public void testBasicQuery() {
this.repository.save(DOMAIN);
final IntegerIdDomain save = this.repository.save(DOMAIN);
Assert.assertNotNull(save);
}
@Test
@ -124,8 +126,11 @@ public class IntegerIdDomainRepositoryIT {
}
@Test
@Ignore // TODO(kuthapar): findById IN clause not working in case of Integer
public void testFindAllById() {
this.repository.findAllById(Collections.singleton(DOMAIN.getNumber()));
final Iterable<IntegerIdDomain> allById =
this.repository.findAllById(Collections.singleton(DOMAIN.getNumber()));
Assert.assertTrue(allById.iterator().hasNext());
}
@Test