name.didier.david.test4j.assertions.CodingStandardAssertions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ndd-test4j Show documentation
Show all versions of ndd-test4j Show documentation
Test4J provides testing support.
The newest version!
package name.didier.david.test4j.assertions;
/**
* Assertions enforcing coding standard, using AssertJ.
*
* @author ddidier
*/
public class CodingStandardAssertions {
/**
* Utility class.
*/
protected CodingStandardAssertions() {
super();
}
/**
* Creates a new instance of {@link CodingStandardClassAssert}
.
*
* @param actual the actual value.
* @return the created assertion object.
*/
public static CodingStandardClassAssert assertThat(final Class> actual) {
return new CodingStandardClassAssert(actual);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy