use of org.apache.servicecomb.swagger.invocation.schemas.PojoAddBodyV1 in project java-chassis by ServiceComb.
the class TestPojo method addBody.
@Test
public void addBody() {
SwaggerProducer swaggerProducer = new SwaggerEnvironment().createProducer(new PojoAddBodyV1(), null);
ProducerArgumentsMapper mapper = swaggerProducer.findOperation("add").getArgumentsMapper();
SwaggerInvocation invocation = new SwaggerInvocation();
Map<String, Object> arguments = new HashMap<>();
arguments.put("addBody", addBody);
Map<String, Object> result = mapper.swaggerArgumentToInvocationArguments(invocation, arguments);
Assert.assertEquals(1, result.size());
Assert.assertSame(addBody, result.get("addBody"));
}
use of org.apache.servicecomb.swagger.invocation.schemas.PojoAddBodyV1 in project incubator-servicecomb-java-chassis by apache.
the class TestPojo method addBody.
@Test
public void addBody() {
SwaggerProducer swaggerProducer = new SwaggerEnvironment().createProducer(new PojoAddBodyV1(), null);
ProducerArgumentsMapper mapper = swaggerProducer.findOperation("add").getArgumentsMapper();
SwaggerInvocation invocation = new SwaggerInvocation();
Map<String, Object> arguments = new HashMap<>();
arguments.put("addBody", addBody);
Map<String, Object> result = mapper.swaggerArgumentToInvocationArguments(invocation, arguments);
Assert.assertEquals(1, result.size());
Assert.assertSame(addBody, result.get("addBody"));
}
Aggregations