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

commonMain.com.saveourtool.save.agent.AgentRunConfig.kt Maven / Gradle / Ivy

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

import com.saveourtool.save.domain.TestResultDebugInfo
import kotlinx.serialization.Serializable

/**
 * @property cliArgs command line arguments for SAVE launch
 * @property executionDataUploadUrl an url to upload execution data ([List] of [TestExecutionResult])
 * @property debugInfoUploadUrl an url to upload debug info ([TestResultDebugInfo])
 */
@Serializable
data class AgentRunConfig(
    val cliArgs: String,
    val executionDataUploadUrl: String,
    val debugInfoUploadUrl: String,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy