io.github.ericdriggs.reportcard.dto.TestSuite 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;
@SuperBuilder(builderMethodName = "testSuiteBuilder", toBuilder = true)
@Data
public class TestSuite implements Serializable {
public TestSuite() {
}
@Serial
private static final long serialVersionUID = -200588524670176256L;
private Long testSuiteId;
private Long testResultFk;
private String name;
private Integer tests;
private Integer skipped;
private Integer error;
private Integer failure;
private BigDecimal time;
private String packageName;
private String group;
private String properties;
private Boolean isSuccess;
private Boolean hasSkip;
private String systemOut;
private String systemErr;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy