com.github.vkorobkov.jfixtures.config.structure.Section Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfixtures Show documentation
Show all versions of jfixtures Show documentation
Easy test data creator for SQL databases
package com.github.vkorobkov.jfixtures.config.structure;
import com.github.vkorobkov.jfixtures.config.yaml.Node;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
public abstract class Section {
@Getter
private final Node node;
}