org.assertj.vavr.api.EitherAssert Maven / Gradle / Ivy
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy