use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive04Test method testDataDriven01.
@Test
public void testDataDriven01() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 1));
testTemplate("reactive04", null, ctx1, "reactive04-02");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive04Test method testDataDriven02.
@Test
public void testDataDriven02() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 10));
testTemplate("reactive04", null, ctx1, "reactive04-02");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive04Test method testList.
@Test
public void testList() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", albums);
testTemplate("reactive04", null, ctx1, "reactive04-02");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive05Test method testDataDriven02.
@Test
public void testDataDriven02() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 10));
testTemplate("reactive05", null, ctx1, "reactive05-02");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class DecoupledGTVGTest method testGTVGHome.
@Test
public void testGTVGHome() throws Exception {
final Context ctx = new Context();
ctx.setVariable("user", new User("John", "Apricot", "Antarctica", null));
ctx.setVariable("today", DateUtils.create(2016, 02, 18));
test("home", "templateparser/decoupled/gtvg/result/home.html", ctx);
}
Aggregations