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

commonMain.com.saveourtool.save.domain.TestResultStatus.kt Maven / Gradle / Ivy

The newest version!
package com.saveourtool.save.domain

import kotlinx.serialization.Serializable

/**
 * Enum of results status
 */
@Serializable
enum class TestResultStatus {
    /**
     * Test failed
     */
    FAILED,

    /**
     * Test ignore
     */
    IGNORED,

    /**
     * CLI exit 1
     */
    INTERNAL_ERROR,

    /**
     * Test completed successfully
     */
    PASSED,

    /**
     * Ready for testing (after test discovery and execution creation)
     */
    READY_FOR_TESTING,

    /**
     * Running state (execution of test has already started on agent)
     */
    RUNNING,

    /**
     * CLI exit 42
     */
    TEST_ERROR,
    ;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy