This repository has been archived by the owner on Dec 21, 2019. It is now read-only.
Releases: tazjin/vavr-matchers
Releases · tazjin/vavr-matchers
Release version 1.2
This is purely a non-functional release that accommodates the Javaslang -> Vavr project rename.
Maven & Gradle configuration need to be updated to point at the new project name:
<dependency>
<groupId>in.tazj</groupId>
<artifactId>vavr-matchers</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
Release version 1.1
Adds support for nested Hamcrest matchers on values contained within Javaslang collections and control types.
For example, this makes it possible to define matchers such as isDefined(lessThan(40))
on an Option<Integer>
.
Consult the Javadocs for more information about the usage of the new features. Usage examples can be seen in the tests.
Release version 1.0
Release 1.0 Initial Javaslang Hamcrest matchers: * CollectionMatchers * ControlMatchers * ValueMatchers