All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.ericdriggs.reportcard.dto.TestResult Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
/*
 * 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