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

org.fennec.sdk.model.commons.TestReport Maven / Gradle / Ivy

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy