org.fluentcodes.tools.xpect.XpectSnake Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpect-snake Show documentation
Show all versions of xpect-snake Show documentation
Compare tests with Snake yaml persisted objects.
The newest version!
package org.fluentcodes.tools.xpect;
import org.fluentcodes.tools.io.IOSnake;
public abstract class XpectSnake extends XpectAbstract{
/**
* Constructor with class array
*/
public XpectSnake(Class annotationClass, Class>... classes) {
super(new IOSnake(classes), "yaml", annotationClass);
}
}