use of org.thymeleaf.spring5.context.webflux.ISpringWebFluxContext in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive09Test method testFullFormBean.
@Test
public void testFullFormBean() throws Exception {
final Album album = new Album(100, "Whatever");
final Map<String, Object> model = new HashMap<String, Object>();
model.put("album", album);
final ISpringWebFluxContext context = ReactiveTestUtils.buildReactiveContext(model, new TestingRequestDataValueProcessor());
testTemplate("reactive09", null, context, "reactive09-02");
}
Aggregations