commonMain.com.saveourtool.save.test.TestFilesContent.kt Maven / Gradle / Ivy
The newest version!
/**
* DTOs for public test transfer
*/
package com.saveourtool.save.test
import kotlinx.serialization.Serializable
/**
* @property testLines public test's test file lines
* @property expectedLines public test's expected file lines
* @property tags list of tags of current test
* @property language
*/
@Serializable
data class TestFilesContent(
val testLines: List,
val expectedLines: List?,
val language: String? = null,
val tags: List = emptyList(),
) {
companion object {
val empty = TestFilesContent(emptyList(), null)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy