Christoph Deppisch
Christoph Deppisch
Thanks for your detailed description. I wonder if the [MessageListener](https://github.com/citrusframework/citrus/blob/main/core/citrus-api/src/main/java/com/consol/citrus/report/MessageListener.java) provides a possible solution for you? What would be needed to satisfy your needs?
Tests that are skipped because of TestNG `dependsOnMethods="foo"` are not supported yet Would need to find a way to hook into the skip operation of TestNG in order to reflect...
This is because Spring TestNG test support closes the application context automatically after all tests are finished. The shutdown process of the application context is done before after suite actions...
@jpeffer contributions are very welcome
Some questions here: - What unit testing framework do you use to run this test (JUnit4, TestNG, JUnit Jupiter)? - How exactly do you tell Citrus to load this custom...
You are right. Sometimes the obvious just needs to be said by someone else. I hope we can do this as the step logging is done in a generic way...
You should be able to use test variables here: ``` testRunner.http(httpActionBuilder -> httpActionBuilder.client(httpClient) .send() .get("/me/${user}/bicycles/${bicycleId}") .header(Headers.SOME_HEADER_NAME, "${aVariable}") ); ``` Make sure to set the test variables `user` and `bicycleId` before...
sorry, I am not sure which status code you are talking about. Is this the Http status code that is usually provided with a response? I can not see any...
Not possible in 2.x. 3.x introduces the concept of message processors/transformers that you can apply on a receive message action before the validation is performed. I also think a transform...
@lburgazzoli sure! but isn't this covered already by Kamelets?