Citrus Framework for Integration testing(Java)是否像Junit一样支持Object to Object Assert?

时间:2017-02-13 07:17:13

标签: citrus-framework

我正在为Web服务开展Citrus集成测试。我需要使用应用程序使用的相同DB。我想知道我是否可以以对象的形式在Citrus中获得响应,以便我可以在Assert中使用Object。

1 个答案:

答案 0 :(得分:0)

Citrus能够自动将消息有效负载映射到域对象中。您需要在Citrus中设置marshaller(Xml)或对象映射器(Json)。然后,您将能够在发送和接收操作中使用域对象实例。

有关详细信息,请参阅以下示例:

https://github.com/christophd/citrus-samples/tree/master/sample-databind https://github.com/christophd/citrus-samples/tree/master/sample-oxm

希望这有帮助