io.github.ericdriggs.reportcard.dto.TestResult 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 java.io.Serial;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.Instant;
@Data
public class TestResult implements Serializable {
@Serial
private static final long serialVersionUID = -4496620756225217991L;
private Long testResultId;
private Long stageFk;
private Integer tests;
private Integer skipped;
private Integer error;
private Integer failure;
private BigDecimal time;
private Instant testResultCreated;
private Boolean isSuccess;
private Boolean hasSkip;
private String externalLinks;
private String testSuitesJson;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy