org.assertj.snapshot.api.Assertions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-snapshot Show documentation
Show all versions of assertj-snapshot Show documentation
Rich and fluent assertions for testing snapshots
The newest version!
package org.assertj.snapshot.api;
import org.assertj.snapshot.internal.assertions.SnapshotAssert;
public class Assertions {
protected Assertions() {}
public static SnapshotAssert assertThat(final Object actual) {
return new SnapshotAssert(actual);
}
}