org.fennec.sdk.model.commons.TestReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-model Show documentation
Show all versions of java-sdk-model Show documentation
The Fennec Pipeline Java SDK model
The newest version!
package org.fennec.sdk.model.commons;
import lombok.*;
import java.util.List;
/**
* Model representing a test report
*/
@Getter
@Setter
@ToString
@EqualsAndHashCode
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class TestReport {
/**
* The test report type (free text: example: Unit tests, integration tests, pen tests...)
*/
private String type;
/**
* The tests suites results
*/
private List suites;
}