use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive05Test method testDataDriven04.
@Test
public void testDataDriven04() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 100000));
testTemplate("reactive05", null, ctx1, "reactive05-02");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive05Test method testDataDriven03.
@Test
public void testDataDriven03() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 100));
testTemplate("reactive05", null, ctx1, "reactive05-02");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive05Test method testList.
@Test
public void testList() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", albums);
testTemplate("reactive05", null, ctx1, "reactive05-02");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive06Test method testList.
@Test
public void testList() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", albums);
testTemplate("reactive06", null, ctx1, "reactive06-02");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive06Test method testDataDriven04.
@Test
public void testDataDriven04() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 100000));
testTemplate("reactive06", null, ctx1, "reactive06-02");
}
Aggregations