io.github.ericdriggs.reportcard.dto.TestCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reportcard-model Show documentation
Show all versions of reportcard-model Show documentation
test report metrics and trend analysis reporting :: reportcard-model
/*
* This file is generated by jOOQ.
*/
package io.github.ericdriggs.reportcard.dto;
import lombok.Data;
import lombok.experimental.SuperBuilder;
import java.io.Serial;
import java.io.Serializable;
import java.math.BigDecimal;
@Data
@SuperBuilder(builderMethodName = "testCaseBuilder", toBuilder = true)
public class TestCase implements Serializable {
public TestCase() {
}
@Serial
private static final long serialVersionUID = -3938894842199056311L;
protected Long testCaseId;
protected Long testSuiteFk;
protected String name;
protected String className;
protected BigDecimal time;
protected Byte testStatusFk;
protected String assertions;
protected String systemOut;
protected String systemErr;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy