org.assertj.vavr.api.TryAssert 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.Try;
/**
* Assertions for {@link io.vavr.control.Try}.
*
* @param type of the value contained in the {@link io.vavr.control.Try}.
* @author Grzegorz Piwowarek
*/
public class TryAssert extends AbstractTryAssert, VALUE> {
TryAssert(Try actual) {
super(actual, TryAssert.class);
}
}