ppalaga opened a new issue #2616:
URL: https://github.com/apache/camel-quarkus/issues/2616
Already supported data formats should have tests for the given dataformat
Java DSL method.
E.g. for Bindy, in addition to the existing
```
BindyDataFormat bindyCsvDataFormat = new BindyDataFormat();
bindyCsvDataFormat.setClassType(CsvOrder.class);
bindyCsvDataFormat.setType(BindyType.Csv.name());
from("direct:marshal-csv-record").marshal(bindyCsvDataFormat);
from("direct:unmarshal-csv-record").unmarshal(bindyCsvDataFormat);
```
we should also test the following (equivalent) notation:
```
from("direct:marshal-csv-record").marshal().bindy(BindyType.Csv,
CsvOrder.class);
from("direct:unmarshal-csv-record").unmarshal().bindy(BindyType.Csv,
CsvOrder.class);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]