commonMain.com.saveourtool.save.execution.ExecutionStatus.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.execution
import kotlinx.serialization.Serializable
/**
* Statuses of execution
*/
@Serializable
enum class ExecutionStatus {
/**
* Execution has completed abnormally with error on the side of save-cloud
*/
ERROR,
/**
* Execution has completed successfully (some tests might have failed, but there have been no internal errors)
*/
FINISHED,
/**
* Status initialization
*/
INITIALIZATION,
/**
* Test executions were removed and execution is saved only for history
*/
OBSOLETE,
/**
* Status pending
*/
PENDING,
/**
* Status running
*/
RUNNING,
;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy