Skip to content
This repository has been archived by the owner on Dec 21, 2019. It is now read-only.

Releases: tazjin/vavr-matchers

Release version 1.2

07 Jun 22:12
1.2
Compare
Choose a tag to compare

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

16 Nov 08:10
1.1
Compare
Choose a tag to compare

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

20 Oct 08:17
1.0
Compare
Choose a tag to compare
Release 1.0

Initial Javaslang Hamcrest matchers:

* CollectionMatchers
* ControlMatchers
* ValueMatchers