
com.hubspot.assertj.algebra.api.Assertions Maven / Gradle / Ivy
The newest version!
package com.hubspot.assertj.algebra.api;
import com.hubspot.algebra.Result;
public class Assertions {
private Assertions() {
throw new AssertionError("Utils classes are not to be instantiated.");
}
public static ResultAssert assertThat(final Result actual) {
return new ResultAssert<>(actual);
}
}