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

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

There is a newer version: 1.0.9
Show newest version
package org.fennec.sdk.model.commons;

import lombok.*;

import java.util.List;

/**
 * Model representing an individual test suite result
 */
@Getter
@Setter
@ToString
@EqualsAndHashCode
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class TestSuiteResult {

    /**
     * The suite id
     */
    private String id;

    /**
     * The suite duration in ms
     */
    private Long durationMs;

    /**
     * The list of test result
     */
    private List tests;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy