use of org.finos.symphony.toolkit.workflow.response.WorkResponse in project spring-bot by finos.
the class TestFormCollectionsMessageML method testCollectionsViewMessageML.
@Test
public void testCollectionsViewMessageML() throws Exception {
TestCollections c = createTestCollections();
WorkResponse wr = createWorkAddSubmit(WorkMode.VIEW, c);
testTemplating(wr, "abc123", "testCollectionsViewMessageML.ml", "testCollectionsViewMessageML.json");
}
use of org.finos.symphony.toolkit.workflow.response.WorkResponse in project spring-bot by finos.
the class TestFormMessageML method createAxesWorkResponse.
protected WorkResponse createAxesWorkResponse(WorkMode wm) {
TestObject a1 = new TestObject("83274239874", true, true, "rob@example.com", 234786, 2138);
TestObject a2 = new TestObject("AUD274239874", true, false, "gregb@example.com", 2386, new BigDecimal("234823498.573"));
TestObjects a = new TestObjects(Arrays.asList(a1, a2));
WorkResponse wr = createWorkAddSubmit(wm, a);
return wr;
}
use of org.finos.symphony.toolkit.workflow.response.WorkResponse in project spring-bot by finos.
the class TestFormMessageML method testAxesTableEditMessageML.
@Test
public void testAxesTableEditMessageML() throws Exception {
WorkResponse wr = createAxesWorkResponse(WorkMode.EDIT);
testTemplating(wr, "abc123", "testAxesTableEditMessageML.ml", "testAxesTableEditMessageML.json");
}
use of org.finos.symphony.toolkit.workflow.response.WorkResponse in project spring-bot by finos.
the class TestFormMessageML method testAxeFormViewMessageML.
@Test
public void testAxeFormViewMessageML() throws Exception {
WorkResponse wr = createAxeForm(WorkMode.VIEW);
testTemplating(wr, "abc123", "testAxeFormViewMessageML.ml", "testAxeFormViewMessageML.json");
}
use of org.finos.symphony.toolkit.workflow.response.WorkResponse in project spring-bot by finos.
the class TestFormMessageML method testAxeFormEditMessageML.
@Test
public void testAxeFormEditMessageML() throws Exception {
WorkResponse wr = createAxeForm(WorkMode.EDIT);
testTemplating(wr, "abc123", "testAxeFormEditMessageML.ml", "testAxeFormEditMessageML.json");
}
Aggregations