use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive13Test method testDataDrivenTwo02.
@Test
public void testDataDrivenTwo02() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(2), 2, "pref"));
testTemplate("reactive13", null, ctx1, "reactive13-04", true);
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive13Test method testDataDrivenOne02.
@Test
public void testDataDrivenOne02() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), 2, "pref"));
testTemplate("reactive13", null, ctx1, "reactive13-03", true);
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive13Test 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, "pref"));
testTemplate("reactive13", null, ctx1, "reactive13-03", true);
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive13Test 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, "pref"));
testTemplate("reactive13", null, ctx1, "reactive13-02", true);
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive13Test method testDataDrivenOne04.
@Test
public void testDataDrivenOne04() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), 7, "pref"));
testTemplate("reactive13", null, ctx1, "reactive13-03", true);
}
Aggregations