org.assertj.vavr.api.EitherAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-vavr Show documentation
Show all versions of assertj-vavr Show documentation
Rich and fluent assertions for testing Vavr tools
package org.assertj.vavr.api;
import io.vavr.control.Either;
/**
* Assertions for {@link io.vavr.control.Either}.
*
* @param type of the value on the left contained in the {@link io.vavr.control.Either}.
* @param type of the value on the right contained in the {@link io.vavr.control.Either}.
* @author Alex Dukhno
*/
public class EitherAssert extends AbstractEitherAssert, LEFT, RIGHT> {
EitherAssert(Either actual) {
super(actual, EitherAssert.class);
}
}