TestRailConfig

data class TestRailConfig(    val username: String,     val password: String,     val suiteId: Long,     val projectId: Long,     val excludingTags: Set<String>,     val ignoredParentSections: List<Long>,     val testCaseDirectory: String,     val mapsDirectory: String)

Constructors

Link copied to clipboard
fun TestRailConfig(    username: String,     password: String,     suiteId: Long,     projectId: Long,     excludingTags: Set<String>,     ignoredParentSections: List<Long>,     testCaseDirectory: String,     mapsDirectory: String)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
fun toClient(): TestRailClient

Properties

Link copied to clipboard
val excludingTags: Set<String>
Link copied to clipboard
val ignoredParentSections: List<Long>
Link copied to clipboard
val mapsDirectory: String
Link copied to clipboard
val password: String
Link copied to clipboard
val projectId: Long
Link copied to clipboard
val suiteId: Long
Link copied to clipboard
val testCaseDirectory: String
Link copied to clipboard
val username: String