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

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

The newest version!
package org.fennec.sdk.model.commons;

import lombok.*;

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

    /**
     * The test id
     */
    private String id;

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

    /**
     * The test execution status
     */
    private TestStatus status;

    /**
     * The details (can be used for error or failure)
     */
    private String details;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy