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

io.github.ericdriggs.reportcard.dto.TestCase 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 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