io.github.bekoenig.assertj.schemacrawler.api.PrimaryKeyAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-schemacrawler Show documentation
Show all versions of assertj-schemacrawler Show documentation
An assertj extension for schema-crawler.
package io.github.bekoenig.assertj.schemacrawler.api;
import schemacrawler.schema.PrimaryKey;
public class PrimaryKeyAssert extends AbstractPrimaryKeyAssert {
public PrimaryKeyAssert(PrimaryKey actual) {
super(actual, PrimaryKeyAssert.class);
}
}