use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test method testDataDrivenTwo06.
@Test
public void testDataDrivenTwo06() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(2), 137));
testTemplate("reactive10", null, ctx1, "reactive10-04");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test method testDataDrivenOne03.
@Test
public void testDataDrivenOne03() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), 3));
testTemplate("reactive10", null, ctx1, "reactive10-03");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test method testDataDrivenLarge02.
@Test
public void testDataDrivenLarge02() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 2));
testTemplate("reactive10", null, ctx1, "reactive10-02");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test method testDataDrivenEmpty02.
@Test
public void testDataDrivenEmpty02() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
testTemplate("reactive10", null, ctx1, "reactive10-01");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test method testDataDrivenOne05.
@Test
public void testDataDrivenOne05() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), 11));
testTemplate("reactive10", null, ctx1, "reactive10-03");
}
Aggregations