Add java-diff-utils support by a-simeshin · Pull Request #1160 · allure-framework/allure-java
Context
Allure-java currently lacks a component for visualizing the difference between two strings. Similar functionality is available in the allure-jsonunit module, but it is only available for json and is called only as a result of Assert, which is not always suitable for all tasks that require visualization, such as preparing test data from a template.
I propose to add a solution based on the most popular java solution for diff - https://github.com/java-diff-utils/java-diff-utils
Which will:
- Be suitable for all text formats, not just json
- With a simple API
- Available for building Assert
- With extended functionality in Attachment
Checklist
- Sign Allure CLA
- Provide unit tests