All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.vavr.api.EitherAssert Maven / Gradle / Ivy

There is a newer version: 0.4.3
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy