net.serenitybdd.reports.configuration.StringReportProperty.kt Maven / Gradle / Ivy
package net.serenitybdd.reports.configuration
import net.serenitybdd.model.environment.EnvironmentSpecificConfiguration
import net.thucydides.model.ThucydidesSystemProperty
import net.thucydides.model.util.EnvironmentVariables
class StringReportProperty(val property: String, val defaultValue: String) : ReportProperty {
constructor(property: ThucydidesSystemProperty, defaultValue: String) : this(property.toString(), defaultValue)
override fun configuredIn(environmentVariables: EnvironmentVariables) : String {
return EnvironmentSpecificConfiguration.from(environmentVariables)
.getOptionalProperty(property)
.orElse(defaultValue)
}
}