Assertions for Vavr
- build.gradle:
implementation "org.assertj:assertj-vavr:$version"
- pom.xml:
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-vavr</artifactId>
<version>${version}</version>
<scope>test</scope>
</dependency>
Starting point is org.assertj.vavr.api.VavrAssertions
class. It contains assertions for all supported Vavr types.
You are encouraged to contribute any missing, useful assertions. To do so, please read the contributing section from assertj-core.